From e79f9a92450abce2d1ffd40eaca72211ec432863 Mon Sep 17 00:00:00 2001 From: wes Date: Tue, 9 Jul 2024 13:08:39 -0400 Subject: [PATCH] fix dimensions --- amp_case.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/amp_case.py b/amp_case.py index a1183d3..7744539 100644 --- a/amp_case.py +++ b/amp_case.py @@ -10,10 +10,12 @@ from svgpathtools import svg2paths import cadquery as cq import cqmore -amp_width = 58 +amp_bottom_height = 16 # how tall the pcb is battery_width = 26 -amp_length = 38 + (battery_width * 2) -amp_height = 34 +battery_height = 17 +amp_width = 50 +amp_length = 60 +amp_height = battery_height + amp_bottom_height + 4 result = Workplane().box(amp_length, amp_width, 2)