initial draft
This commit is contained in:
parent
da59840606
commit
f3b5f12750
7 changed files with 138 additions and 0 deletions
16
Werkbank-balken/top.scad
Normal file
16
Werkbank-balken/top.scad
Normal 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();
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue