From a8ca6bafa916e09d5523ed7fa67e624e02816345 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 28 Aug 2023 00:08:48 -0500 Subject: [PATCH] fix the frame support box again math is even harder when you're not using the right variables --- src/components.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components.scad b/src/components.scad index 0d24b00..bdd026d 100644 --- a/src/components.scad +++ b/src/components.scad @@ -214,7 +214,7 @@ module topplate_with_raised_overhang() { module frame_box() { difference() { roundedcube([frame_x, frame_y, frame_z], center=true, radius=3); - cube([frame_x-(panel_support_width*4), frame_y-(panel_support_width*4), frame_z+5], center=true); + cube([top_plate_x-(panel_support_width*2), top_plate_y-(panel_support_width*2), frame_z+5], center=true); } }