From 524273369b463275ed78312b16d47668e7ed7ab2 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 16 Nov 2023 09:02:43 -0600 Subject: [PATCH] correctly refer to the plate overhang as per edge --- src/components.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components.scad b/src/components.scad index fcb185c..179ba66 100644 --- a/src/components.scad +++ b/src/components.scad @@ -67,9 +67,9 @@ top_plate_z = 5; // how much the top plate x/y is expanded to overhang the frame // note that this is relative to the top plate (so the wall is added back) -top_plate_overhang_amount = (frame_wall * 2) + 17; -overhang_top_plate_x = top_plate_x + top_plate_overhang_amount; -overhang_top_plate_y = top_plate_y + top_plate_overhang_amount; +top_plate_overhang_amount = 8.5; +overhang_top_plate_x = top_plate_x + (frame_wall * 2) + (top_plate_overhang_amount * 2); +overhang_top_plate_y = top_plate_y + (frame_wall * 2) + (top_plate_overhang_amount * 2); plate_to_frame_point_x = (top_plate_x/2)-10; plate_to_frame_point_y = (top_plate_y/2)-10;