diff options
Diffstat (limited to 'connector_front.scad')
-rw-r--r-- | connector_front.scad | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/connector_front.scad b/connector_front.scad index 9562b02..867fb3f 100644 --- a/connector_front.scad +++ b/connector_front.scad @@ -34,20 +34,10 @@ module front_connector( border_top = false, border_bottom = false ) { - difference() { - union() { + connector(border_left, border_right, border_top, border_bottom) { mirror() front_connector_half(border_left, border_top, border_bottom); front_connector_half(border_right, border_top, border_bottom); - } - - // female leftward positioning nippel - if (!border_left) - translate([-tray_width/2, bar_thickness / 2, tray_height - bar_thickness / 2]) rotate([0, 270, 0]) nipple(pla_epsilon); } - - // male rightward positioning nippel - if (!border_right) - translate([tray_width / 2, bar_thickness / 2, tray_height - bar_thickness / 2]) rotate([0, 270, 0]) nipple(); } front_connector(); |