Added pulleys, bom item listing

This commit is contained in:
2022-02-24 16:31:18 +01:00
parent 64d38acfb1
commit 11116136f2
4 changed files with 129 additions and 24 deletions

5
lib.scad Normal file
View File

@@ -0,0 +1,5 @@
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));
}