initial draft

This commit is contained in:
wardwouts 2024-04-09 20:13:09 +02:00
parent da59840606
commit f3b5f12750
7 changed files with 138 additions and 0 deletions

16
Werkbank-balken/top.scad Normal file
View file

@ -0,0 +1,16 @@
include <dimensions.scad>
module beam(){
cube(size=[topbeamthickness, toplength - 2 * topsidethickness, topheight], center=false);
echo("#### Top beam: length = ", toplength - 2*topsidethickness + 2*topslitdepth, " height = ", topheight, "width = ", topbeamthickness);
}
module topside(){
color("red")
cube(size=[topdepth, topsidethickness, topheight], center=false);
echo("#### Top side beam: length = ", topdepth, " height = ", topheight, "width = ", topbeamthickness);
}
beam();
topside();