eerste opzet

This commit is contained in:
Ward Wouts 2024-05-07 14:59:06 +02:00
parent 96f7cdc46b
commit a346a2add5
9 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,11 @@
include <dimensions.scad>
module vertical_slat(){
color("red")
translate([0, 0, -slat_thickness/2])
cube(size=[slat_depth, slat_thickness, cell_height * nr_cells_vertical], center=false);
echo("#### Vertical slat: length = ", cell_height * nr_cells_vertical , " depth = ", slat_depth, "thickness = ", slat_thickness);
}
vertical_slat();