diff options
author | Jan Huwald <jh@sotun.de> | 2015-03-05 12:05:10 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-03-05 12:05:10 (GMT) |
commit | d0cb7d7e6f8f3a44f248c83b84984c808026d1c2 (patch) | |
tree | bb0273279f3515af4e0676824f3669e5d8aed1fb /connector_front.scad | |
parent | 4fbbd88b5043e8c1bb89ae3b52e8c30b4861825b (diff) |
remove old files, add default make target
Diffstat (limited to 'connector_front.scad')
-rw-r--r-- | connector_front.scad | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/connector_front.scad b/connector_front.scad deleted file mode 100644 index 867fb3f..0000000 --- a/connector_front.scad +++ /dev/null @@ -1,43 +0,0 @@ -include <parameters.scad> - -use <connector.scad> -use <nipple.scad> -use <rail.scad> -use <screw_hole.scad> - -module front_connector_half( - border_side = false, - border_top = false, - border_bottom = false -) difference() { - 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]); - } - - // Hole for horizontal thread rods. A dimple for a scew is added at the bottom. - translate([0, bar_thickness / 2, 0]) - screw_hole(nut_depth = border_bottom ? (nut_height + pla_epsilon) : 0); - - // vertical screw hole - translate([tray_width/2 - bar_thickness, bar_thickness * 1.5, tray_height - bar_thickness / 2]) rotate([0, 90, 0]) - screw_hole(nut_depth = nut_height); -} - -module front_connector( - border_left = false, - border_right = false, - border_top = false, - border_bottom = false -) { - 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); - } -} - -front_connector(); |