cut a bit more out of windowed frame walls, make inner wall larger

this makes the inner wall a bit easier to see, without hugely
compromising outer wall integrity

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2024-07-11 18:59:38 -05:00
parent b7910cdb44
commit 2c62c9119b
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 16 additions and 2 deletions

View File

@ -15,7 +15,7 @@ module mount_column_cutout() {
}
}
module front_or_back_inner_wall_frame_piece() {
module front_or_back_inner_wall_frame_base_piece() {
difference() {
front_or_back_box_frame_piece();
// minus the outer wall
@ -28,4 +28,11 @@ module front_or_back_inner_wall_frame_piece() {
}
}
module front_or_back_inner_wall_frame_piece() {
front_or_back_inner_wall_frame_base_piece();
// extend the outward face 2mm in order to have it cut deeper into the frame outer wall
translate([0, -(frame_y-frame_wall)/2, 0]) rotate([-90, 0, 0]) linear_extrude(height=2) projection()
translate([0, 0, 50]) rotate([90, 0, 0]) front_or_back_inner_wall_frame_base_piece();
}
front_or_back_inner_wall_frame_piece();

View File

@ -15,7 +15,7 @@ module mount_column_cutout() {
}
}
module side_inner_wall_frame_piece() {
module side_inner_wall_frame_base_piece() {
difference() {
side_box_frame_piece();
// minus the outer wall
@ -32,4 +32,11 @@ module side_inner_wall_frame_piece() {
}
}
module side_inner_wall_frame_piece() {
side_inner_wall_frame_base_piece();
// extend the outward face 2mm in order to have it cut deeper into the frame outer wall
translate([-(frame_x-frame_wall)/2, 0, 0]) rotate([0, 90, 0]) linear_extrude(height=2) projection()
translate([0, 0, 50]) rotate([0, -90, 0]) side_inner_wall_frame_base_piece();
}
side_inner_wall_frame_piece();