openscad-parts/Stenen_kastje_Ruben/horizontal_slat.scad

12 lines
356 B
OpenSCAD
Raw Normal View History

2024-05-07 14:59:06 +02:00
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();