14 lines
264 B
OpenSCAD
14 lines
264 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>
|
|
|
|
module bottom_panel_solo() {
|
|
bottom_plate_with_overhang();
|
|
}
|
|
|
|
bottom_panel_solo();
|