From 2610cf179d6e6bd3c4e1bc46d7e477a6f83698b4 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Sun, 19 Jul 2026 20:47:02 -0500 Subject: [PATCH] fix: use the arms_thickness to calculate the fillet to avoid errors --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index e8ff5e8..cc68257 100644 --- a/build.py +++ b/build.py @@ -38,7 +38,7 @@ with BuildPart() as mop_scraper_holder: extrude(profile.sketch, clamp_length / 2) extrude(profile.sketch, -clamp_length / 2) - fillet(mop_scraper_holder.edges().filter_by(Axis.Z), 2) + fillet(mop_scraper_holder.edges().filter_by(Axis.Z), (arms_thickness - 0.01) / 2) with Locations(Plane((screw_pos.X, screw_pos.Y, 0)).rotated((-90, 0, 0))): CounterBoreHole(3 / 2, 5.6 / 2, 3.2)