initial work for integrating sbc model framework v2

This commit is contained in:
Edward Kisiel
2024-01-29 17:40:12 -05:00
parent d5674f9f24
commit adf72494a1
29 changed files with 5959 additions and 6978 deletions

12
lib/art.scad Normal file
View File

@@ -0,0 +1,12 @@
/*
art(scale_d1,type,size_z)
*/
/* art work module */
module art(scale_d1,size_z,type) {
linear_extrude(height = size_z) import(file = type, scale=scale_d1);
}