10 lines
271 B
OpenSCAD
10 lines
271 B
OpenSCAD
include <dimensions.scad>
|
|
|
|
module bottom(){
|
|
// hier nog eens goed over nadenken, weet niet of dit klopt
|
|
color("brown")
|
|
cube(size=[bottomwidth, bottomlength, plythick], center=false);
|
|
echo("#### Bottom length = ", bottomlength, " width = ", bottomwidth);
|
|
}
|
|
|
|
bottom();
|