remove imports of the box pieces, and duplicate them into "extended" pieces

this is the next step in getting rid of the 45 degree angle "box" pieces

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
2024-12-18 13:27:24 -06:00
parent ef16559b95
commit 439333c154
18 changed files with 293 additions and 51 deletions

View File

@@ -6,11 +6,11 @@
include <parameters.scad>
include <components.scad>
use <frames/pieces/box/front-or-back.scad>
use <frames/pieces/extended/front-or-back.scad>
module interconnect_frame_half_piece() {
translate([0, frame_y/2-frame_wall, 0]) difference() {
front_or_back_box_frame_piece();
front_or_back_frame_piece();
translate([0, (-frame_y+frame_wall)/2-panel_overhang_amount, 0])
cube([overhang_panel_x, frame_wall+panel_overhang_amount*2, frame_z], center=true);
}