/* A rounded corner decorative plate for the Sega 2P + 1 button layout. * * SPDX-FileCopyrightText: © 2024 Brian S. Stephan * SPDX-License-Identifier: GPL-3.0-or-later */ include decorative_radius_scale = 1.5; include module sega_2p_nine_decorative_plate() { difference() { hull() difference() { // get a 2mm slice of the decorative button cylinders translate([panel_x/2, 0, -50]) sega_2p_nine(); 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]) sega_2p_nine(); } } sega_2p_nine_decorative_plate();