15mm extension

This commit is contained in:
Ian Gulliver
2024-07-04 22:57:31 -07:00
parent 67edc102ca
commit 47b4c5257a

18
extension_15.scad Normal file
View File

@@ -0,0 +1,18 @@
use <spoolmount_a.scad>
use <spoolmount_b.scad>
use <torus.scad>
translate([0, 0, 10])
spoolmount_a();
spoolmount_b();
translate([0, 0, 5])
difference() {
cylinder(h=5, r=42, $fn=500);
translate([0, 0, -1])
cylinder(h=7, r=25, $fn=500);
torus(r_major=33.25, r_minor=3.5, ys=1.4, $fn=500);
}