chiark / gitweb /
flyscreen-handle: wip, extrude
[reprap-play.git] / flyscreen-handle.scad
index 3a7e7f9719729479df5bc26d2dfdf5f6dc0d2fb2..68923392680e470b43d450667f2307cef06baad5 100644 (file)
@@ -7,6 +7,10 @@ opening_topprotr = 1.54;
 
 gap = 0.25;
 
+retain_empir_angle = 20;
+retain_empir_stalkw = 1.0;
+retain_rad = 1.5;
+
 bot_overlap = 5;
 bot_w = 3;
 
@@ -15,6 +19,8 @@ handle_w = 8;
 handle_rh = 2;
 handle_rcut = 3;
 
+cutout_gap = 1.5;
+
 // calculated
 
 ins_irad = openingcnr_dia/2 + gap;
@@ -59,7 +65,53 @@ module HandleSection(){
       }
     }
   }
+  hull(){
+    for (y= [handle_y1 -   handle_rh/2,
+            handle_y1 - 3*handle_rh/2])
+      translate([handle_x1 - handle_rh/2, y])
+       circle(r = handle_rh/2, $fn=20);
+  }
+}
+
+module RetainSection(){
+  rotate(180-retain_empir_angle)
+    translate([0,ins_orad]) circle(r=retain_rad, $fn=20);
+}
+
+module RetainCutout(){
+  rotate(180-retain_empir_angle)
+    translate([0,ins_orad]) {
+    difference(){
+      circle(r=retain_rad + cutout_gap, $fn=20);
+      rotate(180 + retain_empir_angle/2)
+       translate([0, -retain_empir_stalkw])
+       square([100, retain_empir_stalkw*2]);
+    }
+  }
+}  
+
+module WithRetainSection(){
+  difference(){
+    InsertSection();
+    RetainCutout();
+  }
+  HandleSection();
+  RetainSection();
+}
+
+module Demo(){
+  difference(){
+    InsertSection();
+    RetainCutout();
+  }
+  HandleSection();
+  color("red") RetainSection();
+}
+
+module Test(){
+  linear_extrude(height=2) WithRetainSection();
 }
 
-InsertSection();
-HandleSection();
+//Demo();
+//WithRetainSection();
+Test();