commit the frame_box component necessary for the abandoned mount

so, that mount wouldn't have even been printable for anyone else anyway,
that's good, but this breaking out of a piece might as well be committed

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2024-05-11 09:44:41 -05:00
parent f93f20997a
commit b43b79ce19
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 7 additions and 1 deletions

View File

@ -235,7 +235,7 @@ module panel_with_raised_overhang() {
}
}
module frame_box() {
module frame_solid() {
difference() {
top_points = [
// top bevel
@ -285,6 +285,12 @@ module frame_box() {
translate(p) cylinder(r=2, h=frame_bevel_height, center=true);
}
}
}
}
module frame_box() {
difference() {
frame_solid();
// cut out the middle to make it a box
cube([panel_x-(panel_support_width*2), panel_y-(panel_support_width*2), frame_z+5], center=true);
}