buildable-stick-system/src/frames/pieces/front-or-back-windowed-forwardslashes.scad
Brian S. Stephan bf2f8a8a17
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>
2026-01-03 22:12:08 -06:00

23 lines
648 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 <front-or-back.scad>
use <front-or-back-inner-wall.scad>
use <front-or-back-windowed-backslashes.scad>
module forwardslashes_windowed_front_or_back_frame_piece() {
difference() {
front_or_back_frame_piece();
// subtract slashes from the frame wall
mirror([0, 0, 1]) backslashes();
// subtract the inner wall area that will be provided by the other piece
front_or_back_inner_wall_frame_piece();
}
}
forwardslashes_windowed_front_or_back_frame_piece();