chiark / gitweb /
fire-blanket-wall-mushroom: adjust fudge
[reprap-play.git] / fire-blanket-wall-mushroom.scad
index 8391818cdc24407d139733310361690cc79a0f5d..bdf5b3ecfa8eb47f3629040e02444184e20e59c5 100644 (file)
@@ -1,9 +1,11 @@
 // -*- C -*-
 
-screwrad = 4.3 / 2 + 0.30;
-shaftrad = 7.5 / 2 - 0.30;
+fudge=0.15;
 
-diskrad = 12.0 / 2 - 0.25;
+screwrad = 4.3 / 2 + fudge;
+shaftrad = 7.5 / 2 - fudge;
+
+diskrad = 12.0 / 2 - fudge;
 
 csinkpart = 0.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();