From fc005e5c1a66f2a4e3eb53ceef6327d75454e747 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 6 Feb 2024 19:06:37 -0600 Subject: [PATCH] move the bottom plate with overhang into the only part that uses it also that component *is* the part so it's easier to just reuse the part --- src/bottom-panel-solo.scad | 5 ++++- src/components.scad | 7 ------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/bottom-panel-solo.scad b/src/bottom-panel-solo.scad index f3de7ba..56096a5 100644 --- a/src/bottom-panel-solo.scad +++ b/src/bottom-panel-solo.scad @@ -7,7 +7,10 @@ include include module bottom_panel_solo() { - bottom_plate_with_overhang(); + difference() { + rotate([180, 0, 0]) base_top_plate_with_raised_overhang(); + rotate([180, 0, 0]) top_plate_holes(); + } } bottom_panel_solo(); diff --git a/src/components.scad b/src/components.scad index e0e65de..12e9d57 100644 --- a/src/components.scad +++ b/src/components.scad @@ -191,13 +191,6 @@ module base_top_plate_with_raised_overhang() { overhang_plate(); } -module bottom_plate_with_overhang() { - difference() { - rotate([180, 0, 0]) base_top_plate_with_raised_overhang(); - rotate([180, 0, 0]) top_plate_holes(); - } -} - module top_plate_with_raised_overhang() { difference() { base_top_plate_with_raised_overhang();