diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-04 11:42:54 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-04 11:42:54 (GMT) |
commit | 9eeb7724efed6a8f960713120b3ffd002950049d (patch) | |
tree | c66d8240267c3b449ec9bd43a88acd5bff179fff /connector_front.scad | |
parent | c6c73e8c8c7dca865a1bc3937e62b5fa33dd36f7 (diff) |
add nut hole on bottom
Otherwise the structure would stand on a single nut.
Diffstat (limited to 'connector_front.scad')
-rw-r--r-- | connector_front.scad | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/connector_front.scad b/connector_front.scad index 413f90b..56c7431 100644 --- a/connector_front.scad +++ b/connector_front.scad @@ -33,6 +33,10 @@ module half() difference() { translate([0, bar_thickness * 1.5, tray_height - bar_thickness / 2]) rotate([0, 90, 0]) 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); + // female downward positioning nippel translate([rail_width, bar_thickness / 2, tray_height]) nipple(pla_epsilon); } |