-rw-r--r-- | another.scad | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/another.scad b/another.scad index 74a2d5f..461dc26 100644 --- a/another.scad +++ b/another.scad @@ -216,30 +216,28 @@ module the_extruder( // lever end translate([mount_d/2,0,0]) rotate([0,90,0]) { translate([0,-longwing,lsd/2]) finger_indent(d=lever_thickness-1,r=15); translate([0,-longwing,0]) mirror([0,0,1]) difference() { cylinder(d=spring_d+spring_d_clearance,h=lsd,$fn=fnd*(spring_d+spring_d_clearance)); sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); } }//rotate-translate }//difference // bridging patch - if(bridges) place_idler() { - translate([0,0,lever_thickness/2-mount_screwhead_h]) - mirror([0,0,1]) cylinder(d=mount_screwhead_d,h=layer_height); - translate([0,0,-(idler_h+idler_v_tolerance)/2]) - mirror([0,0,1]) cylinder(d=mount_screwhead_d,h=layer_height); - } + if(bridges) place_idler() + translate([0,0,lever_thickness/2-mount_screwhead_h]) + mirror([0,0,1]) + cylinder(d=mount_screwhead_d,h=layer_height); }//translate }//lever module module body() { difference() { union() { cylinder(d=gearbox_d,h=body_h,$fn=fnd*gearbox_d); // spring tensioner part translate([-gearbox_d/2,0,0]) hull() { translate([0,-longwing,ls_z]) rotate([0,90,0]) cylinder(d=lever_thickness,h=fsw,$fn=fnd*lever_thickness); |