summaryrefslogtreecommitdiff
path: root/t.scad
diff options
context:
space:
mode:
Diffstat (limited to 't.scad')
-rw-r--r--t.scad13
1 files changed, 13 insertions, 0 deletions
diff --git a/t.scad b/t.scad
new file mode 100644
index 0000000..4881737
--- /dev/null
+++ b/t.scad
@@ -0,0 +1,13 @@
+minkowski()
+ {
+ circle(1);
+ for(i=[0:5])
+ {
+ rotate([0,0,360/5 * i])
+ hull()
+ {
+ translate([20,0,0]) square(10);
+ square(2);
+ }
+ }
+ } \ No newline at end of file