Twist models

This commit is contained in:
Ian Gulliver
2024-07-08 22:48:19 -07:00
parent 6d1a75719b
commit 59218eb2c9
3 changed files with 62 additions and 0 deletions

19
lib/extension_twist.scad Normal file
View File

@@ -0,0 +1,19 @@
use <spoolmount_twist.scad>
module extension_twist(h) {
assert(h >= 10, "minimum extension height is 10");
// Bottom spoolmount twist
spoolmount_twist();
// Top spoolmount twist
translate([0, 0, h])
rotate([180, 0, 0])
spoolmount_twist();
// Center cylinder
translate([0, 0, 5])
cylinder(h=h - 10, r=24.9, $fn=200);
}
extension_twist(h=25);