it just stands out a bit too much at the default, IMO, considering the button is standalone and not part of a 24mm layout where the default is nicer Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
22 lines
599 B
OpenSCAD
22 lines
599 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
decorative_radius_scale = 1.5;
|
|
include <components.scad>
|
|
|
|
module button_24mm_decorative_plate() {
|
|
difference() {
|
|
// get a 2mm slice of the bigger button cylinders
|
|
translate([0, 0, -55]) button_24mm_hole();
|
|
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([0, 0, -1]) button_24mm_hole();
|
|
}
|
|
}
|
|
|
|
button_24mm_decorative_plate();
|