Tweak hex-spacer

This commit is contained in:
Tom Short
2017-03-11 11:27:47 -05:00
parent 2e2d55f70a
commit 89d5a7430f
14 changed files with 1679970 additions and 14 deletions

13
t.scad Normal file
View File

@@ -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);
}
}
}