-rw-r--r-- | another.scad | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/another.scad b/another.scad index 92187c5..8ba0d58 100644 --- a/another.scad +++ b/another.scad | |||
@@ -84,6 +84,8 @@ module the_extruder( | |||
84 | filament_offset = lu(pulley,"g")+filament_d/2; | 84 | filament_offset = lu(pulley,"g")+filament_d/2; |
85 | pulley_d_clearance = lu(pulley,"ssrc")*2; | 85 | pulley_d_clearance = lu(pulley,"ssrc")*2; |
86 | 86 | ||
87 | sp_ch = st_split_w; | ||
88 | |||
87 | idler_filament_offset = filament_path_d/2; | 89 | idler_filament_offset = filament_path_d/2; |
88 | lever_shell = mount_screwhead_h+0.5; | 90 | lever_shell = mount_screwhead_h+0.5; |
89 | lever_thickness=max(spring_d+spring_d_clearance+layer_height*8,idler_h+idler_v_tolerance+2*lever_shell); | 91 | lever_thickness=max(spring_d+spring_d_clearance+layer_height*8,idler_h+idler_v_tolerance+2*lever_shell); |
@@ -358,8 +360,11 @@ module the_extruder( | |||
358 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) { | 360 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) { |
359 | cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd, | 361 | cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd, |
360 | h=hf+epsilon, $fn=fnd*bigd); | 362 | h=hf+epsilon, $fn=fnd*bigd); |
361 | translate([0,-(st_split_w+st_split_w_tolerance)/2,0]) | 363 | translate([0,-(st_split_w+st_split_w_tolerance)/2,0]) hull() { |
362 | cube(size=[body_h-ls_z+1,st_split_w+st_split_w_tolerance,fsw+1]); | 364 | cube(size=[body_h-ls_z-sp_ch-st_split_w_tolerance,st_split_w+st_split_w_tolerance,fsw+1]); |
365 | translate([0,0,sp_ch+st_split_w_tolerance+1]) | ||
366 | cube(size=[body_h-ls_z+1,st_split_w+st_split_w_tolerance,fsw+1]); | ||
367 | } | ||
363 | }//translate | 368 | }//translate |
364 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) | 369 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) |
365 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); | 370 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); |
@@ -400,7 +405,7 @@ module the_extruder( | |||
400 | translate([0,0,h]) | 405 | translate([0,0,h]) |
401 | sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); | 406 | sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); |
402 | l = body_h-ls_z; | 407 | l = body_h-ls_z; |
403 | w = st_split_w; | 408 | w = sp_ch; |
404 | hull() translate([0,-st_split_w/2,0]) mirror([1,0,0]) { | 409 | hull() translate([0,-st_split_w/2,0]) mirror([1,0,0]) { |
405 | translate([0,0,w]) | 410 | translate([0,0,w]) |
406 | cube(size=[l,st_split_w,w]); | 411 | cube(size=[l,st_split_w,w]); |