Fill out remaining walls
This commit is contained in:
parent
36feeff347
commit
423c1f5408
1 changed files with 22 additions and 4 deletions
|
@ -52,6 +52,10 @@ module accents() {
|
||||||
translate([0, y, wall_height - accent_depth])
|
translate([0, y, wall_height - accent_depth])
|
||||||
cube([case_width_bottom, accent_width, accent_depth], false);
|
cube([case_width_bottom, accent_width, accent_depth], false);
|
||||||
|
|
||||||
|
/* Right */
|
||||||
|
translate([case_width_bottom - accent_depth, y, 0])
|
||||||
|
cube([accent_depth, accent_width, wall_height], false);
|
||||||
|
|
||||||
/* Left */
|
/* Left */
|
||||||
translate([0, y, 0])
|
translate([0, y, 0])
|
||||||
cube([accent_depth, accent_width, wall_height], false);
|
cube([accent_depth, accent_width, wall_height], false);
|
||||||
|
@ -62,6 +66,20 @@ module top_case() {
|
||||||
translate([0, 0, wall_height - wall_width])
|
translate([0, 0, wall_height - wall_width])
|
||||||
fascia();
|
fascia();
|
||||||
|
|
||||||
|
/* Upper */
|
||||||
|
translate([0, case_length_bottom - wall_width, 0])
|
||||||
|
cube([case_width_bottom,
|
||||||
|
wall_width,
|
||||||
|
wall_height], false);
|
||||||
|
|
||||||
|
/* Right */
|
||||||
|
translate([case_width_bottom - wall_width, 0, 0])
|
||||||
|
cube([wall_width, case_length_bottom, wall_height], false);
|
||||||
|
|
||||||
|
/* Lower */
|
||||||
|
cube([case_width_bottom, wall_width, wall_height], false);
|
||||||
|
|
||||||
|
/* Left */
|
||||||
cube([wall_width, case_length_bottom, wall_height - wall_width], false);
|
cube([wall_width, case_length_bottom, wall_height - wall_width], false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue