chiark / gitweb /
bike-stalk-led-mount: wip
[reprap-play.git] / lock-inframe-bracket.scad
index 3ec84dd75fd3787e3edbd2cedf5568198dce2c2d..b4b7f65c272e773b8a88f6c907f2626de47aee7b 100644 (file)
@@ -12,8 +12,8 @@ lockshaft_dia = 14.35;
 cliprecess_h = 16;
 total_h = 45;
 
-back_gap = 10;
-main_th = 2.5;
+back_gap = 12.5;
+main_th = 2.75;
 tube_th = 2.25;
 
 midweb_d = 3;
@@ -30,6 +30,8 @@ $fn=50;
 
 join_cr = 7;
 
+tube_rear_extra_th = 1;
+
 // calculated
 
 lockshaft_r = [1, 1] * lockshaft_dia / 2;
@@ -78,7 +80,11 @@ module JoinCircs(jr){
 module MainPlan(){
   difference(){
     union(){
-      circle(r = tube_or);
+      hull(){
+       for (t=[0, tube_rear_extra_th])
+         translate([0, -t])
+           circle(r = tube_or);
+      }
       translate([-back_ohw,0]) mirror([0,1])
        square([back_ohw*2, backflange_ymin]);