Files
spoolmount/v1/scad/lib/generic/spool_holder_twist.scad

42 lines
815 B
OpenSCAD
Raw Permalink Normal View History

2024-07-12 09:08:58 -07:00
use <spoolmount_twist.scad>
use <../util/torus.scad>
module spool_holder_twist(h) {
assert(h >= 25, "minimum spool_holder_twist height is 25");
2024-07-08 22:48:19 -07:00
spoolmount_twist();
// Main body
translate([0, 0, 5])
cylinder(h=95, r=12, $fn=200);
// Base fan in
translate([0, 0, 5])
rotate_extrude($fn=200)
translate([12, 0])
difference() {
square(10);
translate([10, 10])
circle(r=10);
}
// Cap
2024-07-12 09:08:58 -07:00
translate([0, 0, h - 5])
2024-07-08 22:48:19 -07:00
cylinder(h=5, r=17, $fn=200);
// Cap fan out
2024-07-12 09:08:58 -07:00
translate([0, 0, h - 10])
2024-07-08 22:48:19 -07:00
rotate_extrude($fn=200)
polygon(points=[
[12, 0],
[17, 5],
[12, 5],
]);
// Cap rounded edge
2024-07-12 09:08:58 -07:00
translate([0, 0, h - 2.5])
2024-07-08 22:48:19 -07:00
torus(r_major=17, r_minor=2.5, xs=0.7, $fn=200);
}
2024-07-12 09:08:58 -07:00
spool_holder_twist(h=100);