fixing object names; these pieces are *not* for extended sides

the object that made them "for" extended sides actually didn't do
anything, either, so they've been removed

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2026-01-03 22:12:08 -06:00
parent 1aea9221ff
commit bf2f8a8a17
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 2 additions and 18 deletions

View File

@ -29,12 +29,4 @@ module backslashes_windowed_front_or_back_frame_piece() {
} }
} }
module backslashes_windowed_front_or_back_frame_piece_for_extended_side() { backslashes_windowed_front_or_back_frame_piece();
difference() {
backslashes_windowed_front_or_back_frame_piece();
// ...minus the frame wall and lip on the left
translate([-frame_x/2+frame_wall/2, 0, 0]) cube([frame_wall, frame_y, frame_z], center=true);
}
}
backslashes_windowed_front_or_back_frame_piece_for_extended_side();

View File

@ -19,12 +19,4 @@ module forwardslashes_windowed_front_or_back_frame_piece() {
} }
} }
module forwardslashes_windowed_front_or_back_frame_piece_for_extended_side() { forwardslashes_windowed_front_or_back_frame_piece();
difference() {
forwardslashes_windowed_front_or_back_frame_piece();
// ...minus the frame wall and lip on the left
translate([-frame_x/2+frame_wall/2, 0, 0]) cube([frame_wall, frame_y, frame_z], center=true);
}
}
forwardslashes_windowed_front_or_back_frame_piece_for_extended_side();