openscad-parts/Stenen_kastje_Ruben/vertical_outside.scad

12 lines
287 B
OpenSCAD
Raw Normal View History

2024-05-07 14:59:06 +02:00
include <dimensions.scad>
2024-06-16 11:06:39 +02:00
include <functions.scad>
2024-05-07 14:59:06 +02:00
module vertical_outside(){
color("green")
2024-06-16 11:06:39 +02:00
translate([0, 0, -outer_thickness]) {
cuben("Vertical outside", size=[outer_depth, outer_thickness, (cell_height * nr_cells_vertical) + (2*outer_thickness) ]);
}
2024-05-07 14:59:06 +02:00
}
vertical_outside();