From 16d3feadc18e5c7fbe6d755108e6933adf7731a3 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 29 Aug 2023 10:54:26 -0500 Subject: [PATCH] use the larger concaveness from the overhang panel --- src/bottom-panel.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bottom-panel.scad b/src/bottom-panel.scad index f886daa..43fbaa0 100644 --- a/src/bottom-panel.scad +++ b/src/bottom-panel.scad @@ -21,7 +21,7 @@ include module bottom_panel() { difference() { mirror([0, 0, 1]) topplate(); - translate([0, 0, top_plate_z/2]) cube([top_plate_x*2/3, top_plate_y*2/3, top_plate_z], center=true); + translate([0, 0, top_plate_z/2]) cube([top_plate_x*5/6, top_plate_y*5/6, top_plate_z], center=true); } }