Files

30 lines
663 B
OpenSCAD
Raw Permalink Normal View History

use <spoolmount-twist.scad>
2024-07-08 22:48:19 -07:00
module extension_twist(h) {
2024-07-12 09:08:58 -07:00
assert(h >= 10, "minimum extension_twist height is 10");
2024-07-08 22:48:19 -07:00
// Bottom spoolmount twist
spoolmount_twist();
// Top spoolmount twist
translate([0, 0, h])
rotate([180, 0, 90])
2024-07-08 22:48:19 -07:00
spoolmount_twist();
2024-07-10 19:09:18 -07:00
difference() {
union() {
// Outer body cylinder
translate([0, 0, 4.5])
cylinder(h=h - 9, r=25, $fn=200);
// Inner body cylinder
translate([0, 0, 2.5])
cylinder(h=h - 5, r=23, $fn=200);
}
// Inner through cutout
cylinder(h=h, r=16.25, $fn=200);
}
2024-07-08 22:48:19 -07:00
}
extension_twist(h=25);