diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-04 14:13:04 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-04 14:13:04 (GMT) |
commit | 537dd8413ec6dd17c1753d520c067378c655c8e5 (patch) | |
tree | d2284eec0c9715d55906a8af4966982dbe9c5f39 | |
parent | 9deb1884ee3ca3c03a7f31a2ff55dfb593d5388e (diff) |
front: print bottom nut hole only on bottom elements
-rw-r--r-- | connector_front.scad | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connector_front.scad b/connector_front.scad index 5ec5d41..52e84da 100644 --- a/connector_front.scad +++ b/connector_front.scad @@ -47,15 +47,15 @@ module front_connector_half( cylinder(h = tray_width / 2, r = (rod_diameter + pla_epsilon) / 2, $fs=0.1); // hole for nut on the bottom of the vertical rod - translate([0, bar_thickness / 2, 0]) - cylinder(h=nut_height, r=nut_diameter/2 + pla_epsilon, $fs=0.1); + if (border_bottom) + translate([0, bar_thickness / 2, 0]) + cylinder(h=nut_height, r=nut_diameter/2 + pla_epsilon, $fs=0.1); // female downward positioning nippel if (!border_top) translate([rail_width, bar_thickness / 2, tray_height]) nipple(pla_epsilon); } - module front_connector( border_left = false, border_right = false, |