update with actual dimensions

This commit is contained in:
wardwouts 2024-06-16 11:06:39 +02:00
parent 1bfe2187d1
commit 3786b1ee9e
10 changed files with 54 additions and 35 deletions

View file

@ -1,11 +1,11 @@
include <dimensions.scad>
include <functions.scad>
module vertical_outside(){
color("green")
translate([0, 0, -outer_thickness])
cube(size=[outer_depth, outer_thickness, (cell_height * nr_cells_vertical) + (2*outer_thickness) - 2*outer_incut], center=false);
echo("#### Vertical outside: length = ", (cell_height * nr_cells_vertical) + (2*outer_thickness) , " depth = ", outer_depth, "thickness = ", outer_thickness);
translate([0, 0, -outer_thickness]) {
cuben("Vertical outside", size=[outer_depth, outer_thickness, (cell_height * nr_cells_vertical) + (2*outer_thickness) ]);
}
}
vertical_outside();