From: Ian Jackson Date: Sun, 1 Oct 2017 16:58:40 +0000 (+0100) Subject: stringing-test: try this one X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=51bacbb9000c1afb98310d32ac7873575e518aac;p=reprap-play.git stringing-test: try this one --- diff --git a/stringing-test.scad b/stringing-test.scad index 6dd252c..ce4afac 100644 --- a/stringing-test.scad +++ b/stringing-test.scad @@ -3,9 +3,12 @@ height = 15; $fn= 20; -cube([20, 4, 2]); - -cylinder(r=4, h=height); - -translate([30,0,0]) - cylinder(r=8, h=height); +cylinder(r=7, h=height); + +for (r= [0:5]) { + rotate(r * 72) { + cube([30, 3, 2]); + translate([30,0,0]) + cube([7, 7, height]); + } +}