-rw-r--r-- | another.scad | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/another.scad b/another.scad index 461dc26..74a2d5f 100644 --- a/another.scad +++ b/another.scad @@ -225,10 +225,12 @@ module the_extruder( }//rotate-translate }//difference // bridging patch - if(bridges) place_idler() + 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); + 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); + } }//translate }//lever module |