From b87f3f4a557fd0fd866c9bc96e48478cf5635a03 Mon Sep 17 00:00:00 2001 From: sliptonic Date: Fri, 1 Jan 2021 15:59:16 -0600 Subject: [PATCH] add fix in one more spot --- src/Mod/Path/PathScripts/PathAdaptive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/Path/PathScripts/PathAdaptive.py b/src/Mod/Path/PathScripts/PathAdaptive.py index 2d8ca3a4c0..162406cfb3 100644 --- a/src/Mod/Path/PathScripts/PathAdaptive.py +++ b/src/Mod/Path/PathScripts/PathAdaptive.py @@ -240,6 +240,7 @@ def GenerateGCode(op,obj,adaptiveResults, helixDiameter): else: # no helix entry # rapid move to clearance height + op.commandlist.append(Path.Command("G0", {"Z": obj.ClearanceHeight.Value})) op.commandlist.append(Path.Command("G0", {"X": region["StartPoint"][0], "Y": region["StartPoint"][1], "Z": obj.ClearanceHeight.Value})) # straight plunge to target depth op.commandlist.append(Path.Command("G1", {"X":region["StartPoint"][0], "Y": region["StartPoint"][1], "Z": passEndDepth,"F": op.vertFeed}))