summaryrefslogtreecommitdiff
path: root/t.scad
blob: 48817376f1c430bb87637d9b23ef7089d068d7c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
minkowski()
     {
     circle(1);
     for(i=[0:5])
          {
          rotate([0,0,360/5 * i])
          hull()
               {
               translate([20,0,0]) square(10);
               square(2);
               }
          }
     }