Skip to content

Commit

Permalink
add fix in one more spot
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptonic committed Jan 1, 2021
1 parent 0db316a commit 08b988b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Mod/Path/PathScripts/PathAdaptive.py
Expand Up @@ -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}))
Expand Down

0 comments on commit 08b988b

Please sign in to comment.