Moved all the mechanical stuff into a subdirectory

This commit is contained in:
2022-04-02 14:43:51 +02:00
parent e9fad1ff5c
commit ed4a15658e
11 changed files with 0 additions and 0 deletions

19
mechanical/gen_parts.scad Normal file
View File

@@ -0,0 +1,19 @@
use <assembly.scad>;
module genpart(id = 0) {
if (id <= 0) {
echo(str("Children: ", $children));
} else {
children(id-1);
}
}
genpart(id) {
flcorner();
frcorner();
brcorner();
blcorner();
ysled_slider(177.8);
ysled_slider(177.8);
xsled2();
}