chiark / gitweb /
pronsolerc: Update build area (new pronterface)
[reprap-play.git] / fire-blanket-wall-mushroom.scad
index 0ccd95f152c940e56e6b0dfc68a3ec877dd5ee09..69aa8e7e8822ecca8d13a33348d7c9df9e2fb8c5 100644 (file)
@@ -7,9 +7,6 @@ diskrad = 12.0 / 2 - 0.25;
 
 csinkpart = 0.5;
 
-csinkdepth = 3.4 * csinkpart;
-screwheadrad = (8.1 * csinkpart + screwrad * (1-csinkpart)) / 2 + 0.30;
-
 shaftlen = 4;
 
 diskthick = 1.5;
@@ -21,17 +18,20 @@ disktaperratio = 2;
 disktaperrad = diskrad - diskthick / disktaperratio;
 totallen = shaftlen + diskthick;
 
-echo(disktaperrad, screwheadrad);
-echo(diskrad, disktaperrad, shaftrad, screwheadrad, screwrad);
-
 module SidePlan(){
-  polygon([[-screwheadrad, 0],
+  polygon([[-screwrad, 0],
           [-disktaperrad, 0],
           [-diskrad, -diskthick],
           [-shaftrad, -diskthick],
           [-shaftrad, -totallen],
-          [-screwrad, -totallen],
-          [-screwrad, -csinkdepth]]);
+          [-screwrad, -totallen]]);
+}
+
+module Bush(){
+  rotate_extrude($fn=50, convexity=3){
+    SidePlan();
+  }
 }
 
-SidePlan();
+//SidePlan();
+Bush();