buildable-stick-system/src/top-panel-inset-dir_arc-plus-w-30mm-plus-one.scad
Brian S. Stephan d3940c4109
s/topplate/panel/ --- just better naming
Signed-off-by: Brian S. Stephan <bss@incorporeal.org
2024-02-06 19:19:33 -06:00

17 lines
316 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 dir_arc_w_30mm_plus_one_panel() {
difference() {
panel();
dir_arc_w_30mm_plus_one();
}
}
dir_arc_w_30mm_plus_one_panel();