chiark / gitweb /
ce4afac8aed67320aa20bed514fe970a8ad05827
[reprap-play.git] / stringing-test.scad
1 // -*- C -*-
2
3 height = 15;
4 $fn= 20;
5
6 cylinder(r=7, h=height);
7
8 for (r= [0:5]) {
9   rotate(r * 72) {
10     cube([30, 3, 2]);
11     translate([30,0,0])
12       cube([7, 7, height]);
13   }
14 }