Initial import

This commit is contained in:
Ian Gulliver
2026-07-12 11:43:07 -07:00
commit 5ce02d1de2
64 changed files with 465901 additions and 0 deletions
@@ -0,0 +1,38 @@
$fn = 100;
difference() {
union() {
translate(v=[0, 0, 2.5]) {
cylinder(h=5, d=61, center=true);
}
translate(v=[30.5, 0, 2.5]) {
cylinder(h=5, d=12, center=true);
}
translate(v=[-30.5, 0, 2.5]) {
cylinder(h=5, d=12, center=true);
}
translate(v=[0, 0, 40]) {
cylinder(h=80, d=53, center=true);
}
}
union() {
translate(v=[0, 0, 45]) {
cylinder(h=100, d=47, center=true);
}
translate(v=[31, 0, 2.5]) {
cylinder(h=6, d=4, center=true);
}
translate(v=[-31, 0, 2.5]) {
cylinder(h=6, d=4, center=true);
}
translate(v=[31, 0, 4.01]) {
cylinder(h=2, d1=4, d2=7, center=true);
}
translate(v=[-31, 0, 4.01]) {
cylinder(h=2, d1=4, d2=7, center=true);
}
translate(v=[0, -90, 86]) {
sphere(r=100);
}
}
}