Refactored corners to position motor based on motor_shaft_xoffset; changed rail holder to use a rectangular block, added slots for belt tension adjustment

This commit is contained in:
2022-03-04 20:46:55 +01:00
parent c586e71941
commit ee2beae3c1
4 changed files with 121 additions and 47 deletions

View File

@@ -2,4 +2,13 @@ module bom_item(printable = true, label = "") {
print_label = printable ? " print " : " stock ";
item_label = label == "" ? parent_module(1) : label;
echo(str("BOM:", print_label, item_label));
}
module slotify(vector) {
for (child = [0:$children-1]) {
hull() {
children(child);
translate(vector) children(child);
}
}
}