chiark / gitweb /
scaffold-clamp-cleat: wip
[reprap-play.git] / scaffold-clamp-common.scad
index 5dabac58325710cbb8495213ef00ea7e3e58b733..843e05c18d25ed398ec3d2e6c791f23b08b2a32a 100644 (file)
@@ -33,8 +33,9 @@ vhook_th = 14;
 cleat_frames = 10;
 cleat_curve_r = 200;
 cleat_horn_l = 60;
-cleat_horn_d_min = 8;
-cleat_horn_d_max = 10;
+cleat_horn_d_min = [8, 10];
+cleat_horn_d_max = [10, 12];
+cleat_height = 25;
 
 // ---------- hhook ----------
 
@@ -249,12 +250,14 @@ module VHookPlanDemo(){
 // ---------- cleat ----------
 
 module CleatFrame(s) {
+  r = ( cleat_horn_d_min * s +
+       cleat_horn_d_max * (1-s) ) * 0.5;
   translate([0,0, cleat_curve_r])
     rotate( s * cleat_horn_l / cleat_curve_r * 360/TAU * [0,1,0] )
     translate([0,0, -cleat_curve_r])
     rotate([0, 90, 0])
-    sphere(r= ( cleat_horn_d_min * s +
-               cleat_horn_d_max * (1-s) ) * 0.5);
+    scale([1, r[1]/r[0]])
+    sphere(r= r[0]);
 }
 
 
@@ -262,17 +265,24 @@ module CleatHorn(){
   for (si=[0 : cleat_frames-2]) {
     s0 = si / (cleat_frames-1);
     s1 = (si+1) / (cleat_frames-1);
-    hull(){
+    //hull(){
       CleatFrame(s0);
       CleatFrame(s1);
-    }
+    //}
   }
 }
 
 module VCleatA(){ ////toplevel
-//  DummyA();
+  %DummyA();
 
-  CleatHorn();
+  translate([0, -(main_r + cleat_height), 0]) {
+    rotate([0, -90, 90]) {
+      for (m=[0,1]) {
+       mirror([m,0,0])
+         CleatHorn();
+      }
+    }
+  }
 }
 
 // ---------- hhook ----------