Port spoolmount library refactor: add bump, consolidate extension_twist, drop clip variant

This commit is contained in:
Ian Gulliver
2026-07-13 15:26:55 -04:00
parent 83c7abb698
commit 7c91fdb38b
8 changed files with 71 additions and 63 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
use <spoolmount-twist.scad>
module extension_twist(h, twist) {
module extension_twist(h) {
assert(h >= 10, "minimum extension_twist height is 10");
// Bottom spoolmount twist
@@ -8,7 +8,7 @@ module extension_twist(h, twist) {
// Top spoolmount twist
translate([0, 0, h])
rotate([180, 0, twist])
rotate([180, 0, 90])
spoolmount_twist();
difference() {
@@ -27,4 +27,4 @@ module extension_twist(h, twist) {
}
}
extension_twist(h=25, twist=30);
extension_twist(h=25);