Files
buildable-stick-system/src/plates/decorative-plate-aux-connectors-neutrik-and-rocker-cluster.scad
Brian S. Stephan ea4beca89d move my many, many decorative plates and similar to their own dir
finally making a plates/ instead of stuffing everything in misc/

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2025-09-06 08:12:02 -05:00

22 lines
630 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 <neutrik-d-plate.scad>
module aux_connectors_two_neutrik_cluster_decorative_plate() {
difference() {
hull() {
translate([-50, 0, 0]) neutrik_d_plate();
translate([50, 0, 0]) neutrik_d_plate();
}
translate([(frame_x/2)-frame_center_to_neutrik-frame_wall, 0, 0]) rocker_20mm_mount();
translate([-((frame_x/2)-frame_center_to_neutrik-frame_wall), 0, 0]) neutrik_d_mount();
}
}
aux_connectors_two_neutrik_cluster_decorative_plate();