initial draft
This commit is contained in:
parent
da59840606
commit
f3b5f12750
7 changed files with 138 additions and 0 deletions
22
Werkbank-balken/stand.scad
Normal file
22
Werkbank-balken/stand.scad
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
include <dimensions.scad>
|
||||
|
||||
module standbottom(){
|
||||
cube(size=[topdepth - 2*standoffset, standbeamthickness, standbeamthickness], center=false);
|
||||
echo("#### Stand bottom beam: length = ", topdepth - 2*standoffset, " height = ", standbeamthickness, "width = ", standbeamthickness);
|
||||
}
|
||||
|
||||
module standtop(){
|
||||
color("blue")
|
||||
cube(size=[topdepth - 2*standoffset - 2*standvertoffset, standbeamthickness, standbeamthickness], center=false);
|
||||
echo("#### Stand top beam: length = ", topdepth - 2*standoffset - 2*standvertoffset, " height = ", standbeamthickness, "width = ", standbeamthickness);
|
||||
}
|
||||
|
||||
module standvertical(){
|
||||
color("green")
|
||||
cube(size=[standbeamthickness, standbeamthickness, benchheight-topheight-2*standbeamthickness], center=false);
|
||||
echo("#### Stand vertical beam: length = ", benchheight-topheight-2*standbeamthickness, " height = ", standbeamthickness, "width = ", standbeamthickness);
|
||||
}
|
||||
|
||||
standbottom();
|
||||
standvertical();
|
||||
standtop();
|
||||
Loading…
Add table
Add a link
Reference in a new issue