From 4f8ed3b1a024fcafea05417e2827f1bac910b689 Mon Sep 17 00:00:00 2001 From: tarman3 Date: Sat, 20 Dec 2025 20:02:29 +0200 Subject: [PATCH] CAM: Path.Post.Utils.splitArcs() - Fix zero deflection --- src/Mod/CAM/Path/Post/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Post/Utils.py b/src/Mod/CAM/Path/Post/Utils.py index 82b6b241d7..76632c2a9a 100644 --- a/src/Mod/CAM/Path/Post/Utils.py +++ b/src/Mod/CAM/Path/Post/Utils.py @@ -387,7 +387,7 @@ def splitArcs(path, deflection=None): if not isinstance(path, Path.Path): raise TypeError("path must be a Path object") - if deflection is None: + if not deflection: prefGrp = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/CAM") deflection = prefGrp.GetFloat("LibAreaCurveAccuracy", 0.01)