diff options
-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, |