diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-04-03 16:27:35 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-04-03 16:39:48 +0200 |
commit | 9f581c436766df33538317a5e80d074eb295a73f (patch) | |
tree | c395d2f057f49a831f1cda29e7851023a8fb098e /parts | |
parent | 49b72585df5fd8d39d96ad352740bba3c2ce9206 (diff) |
Improved end cap mold
Diffstat (limited to 'parts')
-rw-r--r-- | parts/end_cap_flush_mold.scad | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/parts/end_cap_flush_mold.scad b/parts/end_cap_flush_mold.scad index 8ea24b7..2a7197a 100644 --- a/parts/end_cap_flush_mold.scad +++ b/parts/end_cap_flush_mold.scad @@ -6,13 +6,10 @@ height = 3; inner_height = 5; difference() { - translate([0, 0, -1.5]) - cylinder(r=radius+1.5, h=inner_height+height+1.5-0.02); - difference() { - union() { - translate([0, 0, inner_height-0.01]) cylinder(r=radius, h=height); - cylinder(r=inner_radius, h=inner_height); - } - translate([0, 0, -0.01]) cylinder(r1=inner_radius-4, r2=inner_radius/4, height=inner_height); + translate([0, 0, 0.01]) + cylinder(r=radius+1.5, h=inner_height+height-0.04); + union() { + translate([0, 0, inner_height-0.01]) cylinder(r=radius, h=height); + cylinder(r=inner_radius, h=inner_height); } } |