buildable-stick-system/src/bottom-panel-overhang-left.scad
Brian S. Stephan 78a43e41bc
fix imports of the overhang panels following renames
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-02-12 20:17:18 -06:00

19 lines
360 B
OpenSCAD

/*
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
include <parameters.scad>
include <components.scad>
use <bottom-panel-overhang-solo.scad>
module bottom_panel_left() {
difference() {
bottom_panel_solo();
// chop the right edge off
side_chopper();
}
}
bottom_panel_left();