author | Michael Krelin <hacker@klever.net> | 2018-08-31 21:20:15 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-08-31 21:20:15 (UTC) |
commit | 99bff09e0aa93701f0a6615c68cac84603553848 (patch) (side-by-side diff) | |
tree | 1155b0945ff7bf8f8dd5a27cf6d4928b81d3f2a1 | |
parent | 87b2c1ca5ad58d8b40f92c0ca78d7b8bc8a2e5c8 (diff) | |
download | extrudery-99bff09e0aa93701f0a6615c68cac84603553848.zip extrudery-99bff09e0aa93701f0a6615c68cac84603553848.tar.gz extrudery-99bff09e0aa93701f0a6615c68cac84603553848.tar.bz2 |
bridge both ends of idler screw hole
-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 @@ -222,16 +222,18 @@ module the_extruder( 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() + 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 module body() { difference() { union() { |