diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-11 13:57:18 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-11 13:57:18 (GMT) |
commit | 96f9b7bd72c30bb39a6f770d78bdf38575814e92 (patch) | |
tree | 63bd35c9fe331f9b555a75abf3dfa34f7deecfa6 | |
parent | b10a5eb37ed5cc540ac0f98e5c7c28a889e71111 (diff) |
nipple: add epsilon
-rw-r--r-- | connector_front.scad | 2 | ||||
-rw-r--r-- | nipple.scad | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/connector_front.scad b/connector_front.scad index 5b17a86..9562b02 100644 --- a/connector_front.scad +++ b/connector_front.scad @@ -25,7 +25,7 @@ module front_connector_half( // 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); + screw_hole(nut_depth = nut_height); } module front_connector( diff --git a/nipple.scad b/nipple.scad index 2894d5c..cc84bfd 100644 --- a/nipple.scad +++ b/nipple.scad @@ -1,6 +1,7 @@ include <parameters.scad> module nipple(e = 0) { + translate([0, 0, epsilon]) rotate([0, 180, 0]) cylinder(h = bar_thickness / 4 + e, r1 = bar_thickness / 4 + e, r2 = 0, $fs=0.1); } |