chiark / gitweb /
topeak-seatstay-lock: change lock hang
[reprap-play.git] / topeak-seatstay-lock.scad
index ba066669963419249ff2b3207edca001dc3d0ebd..ff22d27829f9d04b055b096357adf93a2e8c4f6f 100644 (file)
@@ -29,6 +29,7 @@ holes_rotation = 9;
 pin_y_offset = 5.5;
 pin_x_offset = 0.5;
 ridge_rotation = 8.5;
+lock_hang_ratio = 7;
 
 // computed
 
@@ -82,16 +83,13 @@ module Pin(){
       translate([-pin_width/2, -100]) square([pin_width, 101]);
     }
     hull() for (d=[0,10]) {
-      translate([d*2,-d,0])
+      translate([d*lock_hang_ratio,-d,0])
        translate([-lock_manouvre_thick/2,
                   -pin_workdepth-100,
                   -lock_manouvre_len_smaller])
        cube([lock_manouvre_thick, 100,
              lock_manouvre_len + lock_manouvre_len_smaller]);
     }
-    translate([-lock_manouvre_thick/2, -pin_workdepth-50,
-              -lock_hang_width/2])
-      cube([50, 50, lock_hang_width]);
   }
 }