11 lines
370 B
OpenSCAD
11 lines
370 B
OpenSCAD
include <dimensions.scad>
|
|
|
|
module horizontal_outside(){
|
|
color("yellow")
|
|
translate([0, 0, -outer_thickness])
|
|
cube(size=[outer_depth, cell_width * nr_cells_horizontal, outer_thickness], center=false);
|
|
|
|
echo("#### Horizontal outside: length = ", cell_width * nr_cells_horizontal , " depth = ", outer_depth, "thickness = ", outer_thickness);
|
|
}
|
|
|
|
horizontal_outside();
|