openscad-parts/Stenen_kastje_Ruben/horizontal_slat.scad
2024-05-07 14:59:06 +02:00

11 lines
356 B
OpenSCAD

include <dimensions.scad>
module horizontal_slat(){
color("pink")
translate([0, 0, -slat_thickness/2])
cube(size=[slat_depth, cell_width * nr_cells_horizontal, slat_thickness], center=false);
echo("#### Horizontal slat: length = ", cell_width * nr_cells_horizontal , " depth = ", slat_depth, "thickness = ", slat_thickness);
}
horizontal_slat();