buildable-stick-system/src/misc/decorative-plate-ergo-wasd-five-30mm-and-ergo-nine-30mm.scad
Brian S. Stephan d187312cd3
create new "ergo" layout based on a 30mm WASD layout
for both left and right hands, these layouts have a WASD layout as a
base, with the left and right sides pulled slightly down from the
center, and with 8+ button layouts pulling down even further to match
the arg for the pinky finger locations. I've been playing with this for
a while, and think I like it, at least like it enough to commit it

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2025-09-05 15:13:44 -05:00

25 lines
811 B
OpenSCAD

/*
* SPDX-FileCopyrightText: © 2025 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
include <parameters.scad>
include <components.scad>
module ergo_wasd_five_30mm_and_ergo_nine_30mm_decorative_plate() {
difference() {
// get a 2mm slice of the jumbo decorative button cylinders
union() {
translate([-panel_x/2, 0, -70]) mirror([1, 0, 0]) ergo_wasd_five_30mm();
translate([panel_x/2, 0, -70]) ergo_nine_30mm();
}
translate([0, 0, -100]) cube([500, 500, 198], center=true);
translate([0, 0, 100]) cube([500, 500, 198], center=true);
// cut out the normal holes
translate([-panel_x/2, 0, -1]) mirror([1, 0, 0]) ergo_wasd_five_30mm();
translate([panel_x/2, 0, -1]) ergo_nine_30mm();
}
}
ergo_wasd_five_30mm_and_ergo_nine_30mm_decorative_plate();