11 lines
224 B
OpenSCAD
11 lines
224 B
OpenSCAD
|
|
include <dimensions.scad>
|
||
|
|
|
||
|
|
module side() {
|
||
|
|
ytmp = casedepth + plythick;
|
||
|
|
color("beige")
|
||
|
|
cube(size=[plythick, ytmp, sideheight], center=false);
|
||
|
|
echo("#### Side panel height = ", sideheight, " length = ", ytmp);
|
||
|
|
}
|
||
|
|
|
||
|
|
side();
|