buildable-stick-system/src/misc-rocker-20mm-plate.scad
Brian S. Stephan 97f69b9332
update SPDX headers in source files
license is still the same, this just saves duplicating the terms and
standardizes with what I've been doing elsewhere, style-wise

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-01-02 15:08:01 -06:00

18 lines
328 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 <misc-neutrik-d-plate.scad>
module rocker_plate_20mm() {
difference() {
neutrik_d_plate();
rocker_20mm_mount();
}
}
rocker_plate_20mm();