aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2015-12-13 12:08:23 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2015-12-13 12:08:23 +0100
commite274e1ffae4fe9a11b0795cd0b8b87cb083e20ad (patch)
tree8aebb66ba6e6d4d0c837eff694acc299c52703fc
parent419bb73225e801fb08912ce80c3141289fb5dd77 (diff)
Mold for a silicone end cap
-rw-r--r--parts/end_cap_flush_mold.scad18
1 files changed, 18 insertions, 0 deletions
diff --git a/parts/end_cap_flush_mold.scad b/parts/end_cap_flush_mold.scad
new file mode 100644
index 0000000..e66bdad
--- /dev/null
+++ b/parts/end_cap_flush_mold.scad
@@ -0,0 +1,18 @@
+
+inner_radius = 10.75;
+radius = 12;
+
+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);
+ }
+}