From a690efc920983d71dd179a780a2a1baa576afae4 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Mon, 29 Jun 2026 21:05:50 -0500 Subject: [PATCH] feat(cad): make drive_shaft_bar_adapter a cylinder --- cad/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cad/build.py b/cad/build.py index 5805612..a05dd84 100644 --- a/cad/build.py +++ b/cad/build.py @@ -106,7 +106,7 @@ def build_drive_shaft_bar_adapter(): shaft_hub_screw_head_diam = 7 with BuildPart() as drive_shaft_bar_adapter: - Box(ext_size + (thickness * 2), ext_size + (thickness * 2), height, align=(Align.CENTER, Align.CENTER, Align.MIN)) + Cylinder((ext_size / 2) + thickness, height, align=(Align.CENTER, Align.CENTER, Align.MIN)) # hollow the box with Locations((0, 0, thickness)):