mcopy/scripts/openscadPart.sh

8 lines
244 B
Bash
Raw Normal View History

#!/bin/bash
2023-12-02 14:40:54 +00:00
openscad --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