Skip to content

Commit 3623124

Browse files
committed
new decorative plate for the 3-button aux controls
1 parent 62c804e commit 3623124

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/* Copyright Brian Stephan 2023
2+
*
3+
* This file is part of the Buildable Stick System.
4+
*
5+
* The Buildable Stick System is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by the
7+
* Free Software Foundation, either version 3 of the License, or (at your
8+
* option) any later version.
9+
*
10+
* The Buildable Stick System is distributed in the hope that it will be useful, but
11+
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12+
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13+
* more details.
14+
*
15+
* You should have received a copy of the GNU General Public License along with
16+
* the Buildable Stick System. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
19+
include <parameters.scad>
20+
include <components.scad>
21+
use <misc-neutrik-d-plate.scad>
22+
23+
module aux_control_three_button_cluster_decorative_plate() {
24+
difference() {
25+
hull() {
26+
translate([-50, 0, 0]) neutrik_d_plate();
27+
translate([50, 0, 0]) neutrik_d_plate();
28+
}
29+
translate([0, 0, -10]) aux_control_three_button_cluster();
30+
}
31+
}
32+
33+
aux_control_three_button_cluster_decorative_plate();

0 commit comments

Comments
 (0)