From f6c96547cc6dfc2d2cdba62797dfa127cd8e594c Mon Sep 17 00:00:00 2001 From: wes Date: Tue, 16 Jul 2024 18:48:37 -0400 Subject: [PATCH] fix screw dimensions --- amp_case.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/amp_case.py b/amp_case.py index 74e7a3b..4e5ef40 100644 --- a/amp_case.py +++ b/amp_case.py @@ -151,12 +151,12 @@ result = ( top = ( Workplane() - .box(amp_length, amp_width + side_width, top_width) - .center(-10, -(amp_width / 2) - (0.8 / 2)) + .box(amp_length, amp_width + side_width - 1, top_width) + .center(-10, -(amp_width / 2)) .workplane(offset=-1.0) - .line(0, amp_width + 0.8, forConstruction=True) + .line(0, amp_width, forConstruction=True) .vertices() - .box(amp_length - 20, 1.5, 1.5) + .box(amp_length - 20, 1.4, 1.6) ) result = result.cut(back_screws)