-rw-r--r-- | another.scad | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/another.scad b/another.scad index 7e7f22d..3d804c1 100644 --- a/another.scad +++ b/another.scad | |||
@@ -53,6 +53,8 @@ module the_extruder( | |||
53 | mount_screw_d_tolerance=.4, | 53 | mount_screw_d_tolerance=.4, |
54 | idler_v_tolerance=.5, | 54 | idler_v_tolerance=.5, |
55 | knob_bore_d_tolerance=.6, | 55 | knob_bore_d_tolerance=.6, |
56 | st_nut_h_tolerance=.2, | ||
57 | st_nut_d_tolerance=.2,/* TODO: make it st_nut_w_tolerance */ | ||
56 | 58 | ||
57 | what="lever", // lever|body|knob|springpad|* | 59 | what="lever", // lever|body|knob|springpad|* |
58 | left=false, | 60 | left=false, |
@@ -212,14 +214,14 @@ module the_extruder( | |||
212 | translate([0,0,st_thickshell]) | 214 | translate([0,0,st_thickshell]) |
213 | hull() for(o=[0,spring_d]) translate([0,-o,0]) | 215 | hull() for(o=[0,spring_d]) translate([0,-o,0]) |
214 | rotate([0,0,30]) | 216 | rotate([0,0,30]) |
215 | cylinder(d=st_nut_d,h=st_nut_h,$fn=6); | 217 | cylinder(d=st_nut_d+st_nut_d_tolerance,h=st_nut_h+st_nut_h_tolerance,$fn=6); |
216 | translate([0,0,-1]) cylinder(d=st_screw_d,h=fsw+2,$fn=fnd*st_screw_d); | 218 | translate([0,0,-1]) cylinder(d=st_screw_d,h=fsw+2,$fn=fnd*st_screw_d); |
217 | bigd = spring_d+spring_d_clearance; | 219 | bigd = spring_d+spring_d_clearance; |
218 | hf = (bigd-st_screw_d)/2; | 220 | hf = (bigd-st_screw_d)/2; |
219 | translate([0,0,st_thickshell+st_nut_h+st_thinshell-epsilon]) | 221 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) |
220 | cylinder(d1=st_screw_d,d2=bigd, | 222 | cylinder(d1=st_screw_d,d2=bigd, |
221 | h=hf+epsilon, $fn=fnd*bigd); | 223 | h=hf+epsilon, $fn=fnd*bigd); |
222 | translate([0,0,st_thickshell+st_nut_h+st_thinshell+hf-epsilon]) | 224 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) |
223 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); | 225 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); |
224 | } | 226 | } |
225 | } | 227 | } |
@@ -341,7 +343,7 @@ module the_extruder( | |||
341 | smalld=st_screw_d+2*extrusion_width; | 343 | smalld=st_screw_d+2*extrusion_width; |
342 | bigd = spring_d+spring_d_clearance/2; | 344 | bigd = spring_d+spring_d_clearance/2; |
343 | hf = (bigd-smalld)/2; | 345 | hf = (bigd-smalld)/2; |
344 | translate([-gearbox_d/2+st_thickshell+st_nut_h+st_thinshell+1,-longwing,filament_elevation]) | 346 | translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation]) |
345 | rotate([0,90,0]) difference() { | 347 | rotate([0,90,0]) difference() { |
346 | union() { | 348 | union() { |
347 | cylinder(d1=smalld,d2=bigd,h=hf,$fn=fnd*bigd); | 349 | cylinder(d1=smalld,d2=bigd,h=hf,$fn=fnd*bigd); |