2023-08-21 23:04:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-09-04 14:48:54 +00:00
|
|
|
openscad --enable=fast-csg --enable=fast-csg-trust-corefinement --export-format=asciistl -o "./stl/${3}" -D"PART=\"${2}\"" "./scad/${1}"
|
2023-08-21 23:04:39 +00:00
|
|
|
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
|