openscad-parts/Koffertjes_opslag/bottom.scad

11 lines
271 B
OpenSCAD
Raw Normal View History

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