diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-12-08 15:40:03 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-12-08 15:40:03 +0100 |
commit | 315515a38975a59ac4ea123a5a91884a758f6eaa (patch) | |
tree | a50b3060e63adf438d35a8b7fb045ad1973d5dc0 /parts | |
parent | 5e9f3d21f1cbda724f0c87f0995c5a35522d24ec (diff) |
End cap
Diffstat (limited to 'parts')
-rw-r--r-- | parts/end_cap_flush.scad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/parts/end_cap_flush.scad b/parts/end_cap_flush.scad new file mode 100644 index 0000000..fd0d9d5 --- /dev/null +++ b/parts/end_cap_flush.scad @@ -0,0 +1,11 @@ + +inner_radius = 10.75; +radius = 12; + +height = 3; +inner_height = 5; + +union() { + cylinder(r1=radius - height / 2, r2=radius, h=height); + translate([0, 0, height-0.01]) cylinder(r=inner_radius, h=inner_height); +} |