chiark / gitweb /
air-hockey-puck: wip
[reprap-play.git] / mic-table-clamp.scad
index cac94b720871c9cb3c36525b9d234685cb290cda..b88e8d160566795562000f5d7b8933737594e2e7 100644 (file)
@@ -12,13 +12,17 @@ include <camera-mount.scad>
 positive_dia = inch * 3/8. - 0.375;
 positive_l = inch * 1/2.;
 
+positive_blank_dia = 8.12;
+blank_l = 17;
+blank_taper = 1.0;
+
 stem_l = 40;
 stem_dia = 12;
 stem_th = 3;
 stem_ceil = 2;
 stem_base_th  = 4;
 stem_base_dia = 25;
-stem_inner_l = 30;
+stem_inner_l = 15;
 
 thread_nom = 8;
 thread_pitch = 1.25;
@@ -51,17 +55,18 @@ wingnut_wing_xrad = 8;
 wingnut_wing_xh = 5;
 wingnut_wing_th = 3;
 
-$test= true;
-///$test= false;
+//$test= true;
+$test= false;
 
-//$fa= 3;
-//$fs= 0.2;
+$fa= 3;
+$fs= 0.2;
 
 // calculated
 
 wingnut_cnr = wingnut_wing_th/2 -0.1;
 
 clamp_reg_bot_x_min = -stem_base_dia/2 -clamp_reg_clear_x -clamp_reg_sz2;
+clamp_collar_r = thread_nom/2 + clamp_bot_collar_th;
 
 module OurThread(l){
   translate([0,0,-0.01])
@@ -70,11 +75,9 @@ module OurThread(l){
                  test=$test, length=l);
 }
 
-module Stem(){ ////toplevel
+module StemWith(){
   translate([0,0, stem_l -0.1])
-    english_thread(diameter=positive_dia/inch, threads_per_inch=16,
-                  leadin=1, test=$test,
-                  length= (positive_l + 0.1) / inch);
+    children();
 
   difference(){
     union(){
@@ -86,6 +89,27 @@ module Stem(){ ////toplevel
     }
     OurThread(stem_inner_l);
   }
+}  
+
+module Stem(){ ////toplevel
+  StemWith()
+    english_thread(diameter=positive_dia/inch, threads_per_inch=16,
+                  leadin=1, test=$test,
+                  length= (positive_l + 0.1) / inch);
+}
+
+module StemBlankPart(){
+  hull(){
+    cylinder(h = blank_l + 0.1 - blank_taper,
+            r = positive_blank_dia/2);
+    cylinder(h = blank_l + 0.1,
+            r = positive_blank_dia/2 - blank_taper);
+  }
+}
+
+module BlankStem(){ ////toplevel
+  StemWith()
+    StemBlankPart();
 }
 
 module Wingnut(){ ////toplevel
@@ -116,14 +140,18 @@ module Wingnut(){ ////toplevel
 }
 
 module ClampCollarPlan(){
-  circle(r= thread_nom/2 + clamp_bot_collar_th);
+  circle(r= clamp_collar_r);
 }
 module ClampHolePlan(){
   circle(r= clamp_hole_dia/2);
 }
 module ClampArmPlan(){
-  rectfromto([0,       -clamp_w/2],
-            [clamp_l, +clamp_w/2]);
+  r = clamp_collar_r;
+  hull(){
+    rectfromto([r,       -clamp_w/2],
+              [clamp_l, +clamp_w/2]);
+    ClampCollarPlan();
+  }
 }
 
 module ClampTop(){ ////toplevel
@@ -184,8 +212,13 @@ module ClampBot(){ ////toplevel
   }
 }
 
+module StemBlankTest(){ ////toplevel
+  StemBlankPart();
+  linextr(-1.5,0) square(center=true, [10,35]);
+}
+
 module Demo(){ ////toplevel
-  color("blue") translate([0,0, clamp_top_th+0.5]) Stem();
+  color("blue") translate([0,0, clamp_top_th+0.5]) BlankStem();
   color("red") ClampTop();
   color("grey") translate([0,0, -(clamp_bot_th + 5)]) ClampBot();
   translate([0,0, -(clamp_bot_collar +10)])