diff options
Diffstat (limited to 'connector_front.scad')
-rw-r--r-- | connector_front.scad | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/connector_front.scad b/connector_front.scad index b3bacb8..ccfe56e 100644 --- a/connector_front.scad +++ b/connector_front.scad @@ -9,7 +9,14 @@ module front_connector_half( border_top = false, border_bottom = false ) difference() { - connector_half(border_side, border_top, border_bottom); + union() { + connector_half(border_side, border_top, border_bottom); + + // vertical thread bold receiver (extremal) + if (!border_side) + translate([tray_width/2 - bar_thickness, bar_thickness, tray_height-bar_thickness]) + cube([bar_thickness, bar_thickness, bar_thickness]); + } // receiver for rail if (!border_side) |