/* A decorative plate for the Sega 2P layout. * * SPDX-FileCopyrightText: © 2023 Brian S. Stephan * SPDX-License-Identifier: GPL-3.0-or-later */ include include module sega_2p_decorative_plate() { difference() { // get a 2mm slice of the decorative button cylinders translate([0, 0, -50]) sega_2p(); 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]) sega_2p(); } } sega_2p_decorative_plate();