CAM: Path.Post.Utils.splitArcs() - Fix zero deflection

This commit is contained in:
tarman3
2025-12-20 20:02:29 +02:00
parent c423e8de08
commit 4f8ed3b1a0

View File

@@ -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)