diff options
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | screw.scad | 4 | ||||
-rw-r--r-- | shell_lower.scad (renamed from shell.scad) | 2 | ||||
-rw-r--r-- | shell_upper.scad | 3 |
4 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5981fc1 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +%.stl: %.scad + openscad $< -o $@ + +all: ball.stl screw.stl shell_lower.stl shell_upper.stl + +clean: + -rm *.stl diff --git a/screw.scad b/screw.scad new file mode 100644 index 0000000..78e5195 --- /dev/null +++ b/screw.scad @@ -0,0 +1,4 @@ +use <gimbal.scad>; + +two_half_screws(); + diff --git a/shell.scad b/shell_lower.scad index d30489f..357fafa 100644 --- a/shell.scad +++ b/shell_lower.scad @@ -1,3 +1,3 @@ use <gimbal.scad> -shell(); +shell_lower(); diff --git a/shell_upper.scad b/shell_upper.scad new file mode 100644 index 0000000..0dc54a8 --- /dev/null +++ b/shell_upper.scad @@ -0,0 +1,3 @@ +use <gimbal.scad> + +shell_upper(); |