8 lines
299 B
Bash
8 lines
299 B
Bash
#!/bin/bash
|
|
|
|
openscad --enable=fast-csg --enable=fast-csg-trust-corefinement --export-format=asciistl -o "./stl/${3}" -D"PART=\"${2}\"" "./scad/${1}"
|
|
echo "Compiled ${3} from ${1}"
|
|
if [ -f "./scad/common/c14n_stl.py" ]; then
|
|
python3 ./scad/common/c14n_stl.py "./stl/${3}"
|
|
echo "Normalized ${3}"
|
|
fi |