initial commit

This commit is contained in:
2026-04-24 00:32:58 -04:00
commit d347245faa
2 changed files with 18 additions and 0 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

+18
View File
@@ -0,0 +1,18 @@
$fa = 1;
$fs = 0.4;
lip_dia = 15.5;
lip_depth = 1.5;
tube_od = 12.6;
tube_id = 6.5;
tube_depth = 18;
difference() {
union() {
cylinder(h = lip_depth, d = lip_dia);
cylinder(h = lip_depth + tube_depth, d = tube_od);
}
translate([0, 0, -1]) {
cylinder(h = lip_depth + tube_depth + 2, d = tube_id);
}
}