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

View 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();