openscad-parts/Stenen_kastje_Ruben/back_plane.scad

17 lines
499 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 back_plane(){
color("lightblue")
2024-06-16 11:06:39 +02:00
cuben("Back", size=[back_thickness, 2*outer_thickness + cell_width * nr_cells_horizontal, 2*outer_thickness + cell_height * nr_cells_vertical]);
2024-05-07 14:59:06 +02:00
}
back_plane();
module back_plane_fancy(){
color("lightblue")
2024-06-16 11:06:39 +02:00
cuben("Fancy back", size=[back_thickness, 2*outer_thickness + cell_width * nr_cells_horizontal, 2*outer_thickness + cell_height * nr_cells_vertical + back_fancy_height]);
2024-05-07 14:59:06 +02:00
}
back_plane_fancy();