chiark / gitweb /
fairphone-case: CatchPortion: take xwidth rather than width (nfc)
[reprap-play.git] / stringing-test.scad
index 6dd252c18cd580533d96e720569ad1b2119c719f..a75704dbe0f9def9a464b7db79ae23612ef41211 100644 (file)
@@ -3,9 +3,13 @@
 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:4]) {
+  rotate(r * 72) {
+    d = 10 * pow(1.5, r);
+    cube([d, 3, 2]);
+    translate([d, 0,0])
+      cube([7, 7, height]);
+  }
+}