Compare commits

...

2 Commits

Author SHA1 Message Date
b43b79ce19
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>
2024-05-11 09:44:41 -05:00
f93f20997a
move the fancy mount into the attic
the friction fit is too unreliable, and it took minimal kid aura to have
the whole thing toppling over. I will make a more stable mount at a
minimum later, so this thing goes into the TODO pile for now

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-05-11 09:43:17 -05:00
3 changed files with 11 additions and 1 deletions

4
attic/README.md Normal file
View File

@ -0,0 +1,4 @@
# The Attic
This directory includes abandoned pieces that I'd like to revisit some time, but I cannot support or recommend using
as-is. Print at your own caution, or better yet, maybe fix them!

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);
}