Fill out remaining walls

This commit is contained in:
XANTRONIX 2023-11-14 12:35:19 -05:00
parent 36feeff347
commit 423c1f5408

View file

@ -52,6 +52,10 @@ module accents() {
translate([0, y, wall_height - accent_depth])
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 */
translate([0, y, 0])
cube([accent_depth, accent_width, wall_height], false);
@ -62,6 +66,20 @@ module top_case() {
translate([0, 0, wall_height - wall_width])
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);
}