Remove feet

This commit is contained in:
Nettika 2025-10-05 06:40:51 +00:00
parent 26c5a213df
commit 71b5382544
5 changed files with 272937 additions and 68 deletions

View file

@ -1,6 +1,16 @@
default: (build "cartridge") (build "receptacle")
parts := "cartridge receptacle"
build target:
echo 'use <{{target}}.scad>; $fn = 128; {{target}}();' > part.scad
openscad -o {{target}}.stl part.scad
rm part.scad
default: build
build:
#!/bin/sh
for part in {{parts}}; do
echo "Rendering $part..."
just render-part $part
done
render-part part:
#!/bin/sh
echo 'use <{{part}}.scad>; $fn = 128; {{part}}();' > part.scad
openscad --backend Manifold -o {{part}}.stl part.scad
rm part.scad