chiark / gitweb /
poster-tube-lid: catch: adjust stalk height from v1
[reprap-play.git] / fire-blanket-wall-mushroom.scad
index 8391818cdc24407d139733310361690cc79a0f5d..dae4769632bcd53660ebb44c61acbf52feae66c7 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C -*-
 
-screwrad = 4.3 / 2 + 0.30;
-shaftrad = 7.5 / 2 - 0.30;
+fudge=0.15;
 
-diskrad = 12.0 / 2 - 0.25;
+screwrad = 4.5 / 2 + fudge; // xxx check
+shaftrad = 7.5 / 2 - fudge;
+
+diskrad = 12.0 / 2 - fudge;
 
 csinkpart = 0.5;
 
-shaftlen = 4;
+shaftlen = 8; // xxx check
 
 diskthick = 1.5;
 
@@ -27,4 +29,12 @@ module SidePlan(){
           [-screwrad, -totallen]]);
 }
 
-SidePlan();
+module Bush(){
+  rotate_extrude($fn=25, convexity=3){
+    SidePlan();
+  }
+}
+
+//SidePlan();
+rotate([0,180,0])
+  Bush();