Compare commits
2 Commits
ba3e77d0cd
...
7e67c15c13
Author | SHA1 | Date | |
---|---|---|---|
7e67c15c13 | |||
e426e15884 |
19
CHANGELOG.md
19
CHANGELOG.md
@ -2,6 +2,25 @@
|
||||
|
||||
Included is a summary of changes to the project, by version. Details can be found in the commit history.
|
||||
|
||||
## v4.4.3
|
||||
|
||||
### Features
|
||||
|
||||
* Windowed frame wall pieces were made for the "clean" front/back walls that line up with the extended sides.
|
||||
|
||||
### Improvements
|
||||
|
||||
* The inner wall piece has been thickened, bringing its surface closer to the end of the outer wall windowed frame
|
||||
pieces, making the window less deep and the inner wall easier to see.
|
||||
* The inner wall piece has been shrunken on the Z in order to leave some material on the outer wall and thus improve the
|
||||
friction fit and clamp of the outer wall piece, which was too weakened by the unsupported top and bottom otherwise.
|
||||
|
||||
### Miscellaneous
|
||||
|
||||
* Documentation updates, especially around the printing of parts.
|
||||
* Corrected the names of some pieces that were accidentally duplicated from the file they were copied from rather than
|
||||
what they were, or otherwise didn't match the standard pattern (such as it is).
|
||||
|
||||
## v4.4.2
|
||||
|
||||
### Bugfixes
|
||||
|
@ -17,7 +17,8 @@ module mount_column_cutout() {
|
||||
|
||||
module front_or_back_inner_wall_frame_base_piece() {
|
||||
difference() {
|
||||
front_or_back_box_frame_piece();
|
||||
// Z is scaled so that some part of the original part inner wall is retained
|
||||
scale([1, 1, inner_frame_z_decorative_scale]) front_or_back_box_frame_piece();
|
||||
// minus the outer wall
|
||||
translate([0, -(frame_y-frame_wall)/2, 0]) cube([frame_x, frame_wall, frame_z], center=true);
|
||||
// minus half of the mounting posts (the other half provided by the outer wall)
|
||||
|
@ -17,7 +17,8 @@ module mount_column_cutout() {
|
||||
|
||||
module side_inner_wall_frame_base_piece() {
|
||||
difference() {
|
||||
side_box_frame_piece();
|
||||
// Z is scaled so that some part of the original part inner wall is retained
|
||||
scale([1, 1, inner_frame_z_decorative_scale]) side_box_frame_piece();
|
||||
// minus the outer wall
|
||||
translate([-(frame_x-frame_wall)/2, 0, 0]) cube([frame_wall, frame_y, frame_z], center=true);
|
||||
// minus half of the mounting posts (the other half provided by the outer wall)
|
||||
|
@ -75,6 +75,12 @@ panel_z = 5;
|
||||
// inside the frame
|
||||
inner_frame_z = frame_z - (panel_z * 2);
|
||||
|
||||
// "windowed" pieces chop out the inner wall of the frame as a separate piece in order
|
||||
// to print it a different color/way/style. to improve friction fit, it is only the below
|
||||
// value scale of the whole wall, so that the rest of the wall is retained on the outer
|
||||
// piece, which helps clamp the two together (and helps the panels clamp it all)
|
||||
inner_frame_z_decorative_scale = 0.95;
|
||||
|
||||
// how much the top plate x/y is expanded to overhang the frame
|
||||
// note that this is relative to the top plate (so the wall is added back)
|
||||
panel_overhang_amount = 8.5;
|
||||
|
Loading…
Reference in New Issue
Block a user