this should allow me to reuse them in another design I've got cooking Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
30 lines
968 B
OpenSCAD
30 lines
968 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
use <side.scad>
|
|
use <side-inner-wall.scad>
|
|
|
|
module backslashes() {
|
|
translate([-(frame_x-frame_wall)/2, -40, 0]) rotate([0, 0, -90]) slash_cutout();
|
|
translate([-(frame_x-frame_wall)/2, -20, 0]) rotate([0, 0, -90]) slash_cutout();
|
|
translate([-(frame_x-frame_wall)/2, 0, 0]) rotate([0, 0, -90]) slash_cutout();
|
|
translate([-(frame_x-frame_wall)/2, 20, 0]) rotate([0, 0, -90]) slash_cutout();
|
|
translate([-(frame_x-frame_wall)/2, 40, 0]) rotate([0, 0, -90]) slash_cutout();
|
|
}
|
|
|
|
module backslashes_windowed_side_box_frame_piece() {
|
|
difference() {
|
|
side_box_frame_piece();
|
|
// subtract slashes from the frame wall
|
|
backslashes();
|
|
// subtract the inner wall area that will be provided by the other piece
|
|
side_inner_wall_frame_piece();
|
|
}
|
|
}
|
|
|
|
backslashes_windowed_side_box_frame_piece();
|