update with actual dimensions
This commit is contained in:
parent
1bfe2187d1
commit
3786b1ee9e
10 changed files with 54 additions and 35 deletions
|
|
@ -1,17 +1,16 @@
|
|||
include <dimensions.scad>
|
||||
include <functions.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);
|
||||
cuben("Back", size=[back_thickness, 2*outer_thickness + cell_width * nr_cells_horizontal, 2*outer_thickness + cell_height * nr_cells_vertical]);
|
||||
}
|
||||
|
||||
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);
|
||||
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]);
|
||||
}
|
||||
|
||||
back_plane_fancy();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue