-rw-r--r-- | another.scad | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/another.scad b/another.scad index 03f3bf9..dbd20f3 100644 --- a/another.scad +++ b/another.scad @@ -40,4 +40,6 @@ module the_extruder( mount_screw_d = 3.1, mount_screw_l = 20, mount_screwhead_d=6, mount_screwhead_h=3, + idler_screw_d = 3, + idler_screwhead_d=6, idler_screwhead_h=3, pf = pushfit_embeddest, @@ -114,5 +116,5 @@ module the_extruder( place_idler() { cylinder(d=idler_d,h=idler_h,center=true,$fn=30); - cylinder(d=idler_id,h=lever_thickness+2,center=true,$fn=30); + cylinder(d=idler_screw_d,h=lever_thickness+2,center=true,$fn=30); }//place idler // filament path @@ -161,7 +163,7 @@ module the_extruder( cube(size=[lsd+2,extrusion_width,idler_h+idler_v_tolerance+2]); } - cylinder(d=mount_screw_d+mount_screw_d_tolerance,h=lever_thickness+2,center=true,$fn=30); - translate([0,0,lever_thickness/2-mount_screwhead_h]) - cylinder(d=mount_screwhead_d,h=mount_screwhead_h+1,$fn=fnd*mount_screwhead_d); + cylinder(d=idler_screw_d,h=lever_thickness+2,center=true,$fn=30); + translate([0,0,lever_thickness/2-idler_screwhead_h]) + cylinder(d=idler_screwhead_d,h=idler_screwhead_h+1,$fn=fnd*idler_screwhead_d); } // mounting screw hole |