eerste opzet
This commit is contained in:
parent
96f7cdc46b
commit
a346a2add5
9 changed files with 117 additions and 0 deletions
17
Stenen_kastje_Ruben/back_plane.scad
Normal file
17
Stenen_kastje_Ruben/back_plane.scad
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
include <dimensions.scad>
|
||||
|
||||
module back_plane(){
|
||||
color("lightblue")
|
||||
cube(size=[back_thickness, 2*outer_thickness - 2*outer_incut + cell_width * nr_cells_horizontal, 2*outer_thickness - 2*outer_incut + cell_height * nr_cells_vertical], center=false);
|
||||
echo("#### Back: thickness = ", back_thickness, " height = ", 2*outer_thickness - 2*outer_incut + cell_height * nr_cells_vertical, "width = ", 2*outer_thickness - 2*outer_incut + cell_width * nr_cells_horizontal);
|
||||
}
|
||||
|
||||
back_plane();
|
||||
|
||||
module back_plane_fancy(){
|
||||
color("lightblue")
|
||||
cube(size=[back_thickness, 2*outer_thickness - 2*outer_incut + cell_width * nr_cells_horizontal, 2*outer_thickness - 2*outer_incut + cell_height * nr_cells_vertical + back_fancy_height], center=false);
|
||||
echo("#### Fancy back: thickness = ", back_thickness, " height = ", 2*outer_thickness - 2*outer_incut + cell_height * nr_cells_vertical + back_fancy_height, "width = ", 2*outer_thickness - 2*outer_incut + cell_width * nr_cells_horizontal);
|
||||
}
|
||||
|
||||
back_plane_fancy();
|
||||
Loading…
Add table
Add a link
Reference in a new issue