diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-11 15:04:15 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-11 15:04:15 (GMT) |
commit | f28a842470f9bcabbf8c6b5eba5c92842886d361 (patch) | |
tree | a57fab71f66f0bba4c83d7a929bbd2f609fc6254 | |
parent | a1bad625198219ea4321f7b436ece961e27ef164 (diff) |
back connector: add screw holes on right border
Required to fixate back connector elements at the right border.
-rw-r--r-- | connector_back.scad | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/connector_back.scad b/connector_back.scad index 23e67df..7672bce 100644 --- a/connector_back.scad +++ b/connector_back.scad @@ -31,11 +31,10 @@ module back_connector( } // screw holes for PCB screws - if (!border_right) - for (h = [bar_thickness/2, tray_height - bar_thickness/2]) - translate([0, 0, h]) - rotate([-90, 0, 0]) - screw_hole(nut_depth = 1.1 * nut_height); + for (h = [bar_thickness/2, tray_height - bar_thickness/2]) + translate([0, 0, h]) + rotate([-90, 0, 0]) + screw_hole(nut_depth = 1.1 * nut_height); } } |