chiark / gitweb /
sewing-table: commitid wip
[reprap-play.git] / fire-blanket-wall-mushroom.scad
index 69aa8e7e8822ecca8d13a33348d7c9df9e2fb8c5..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;
 
@@ -28,10 +30,11 @@ module SidePlan(){
 }
 
 module Bush(){
-  rotate_extrude($fn=50, convexity=3){
+  rotate_extrude($fn=25, convexity=3){
     SidePlan();
   }
 }
 
 //SidePlan();
-Bush();
+rotate([0,180,0])
+  Bush();