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:
parent
b7910cdb44
commit
2c62c9119b
@ -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() {
|
difference() {
|
||||||
front_or_back_box_frame_piece();
|
front_or_back_box_frame_piece();
|
||||||
// minus the outer wall
|
// 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();
|
front_or_back_inner_wall_frame_piece();
|
||||||
|
@ -15,7 +15,7 @@ module mount_column_cutout() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module side_inner_wall_frame_piece() {
|
module side_inner_wall_frame_base_piece() {
|
||||||
difference() {
|
difference() {
|
||||||
side_box_frame_piece();
|
side_box_frame_piece();
|
||||||
// minus the outer wall
|
// 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();
|
side_inner_wall_frame_piece();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user