use correct feedrate for rapid moves

This commit is contained in:
Daniel Wood
2021-05-05 20:33:26 +01:00
parent aaa5a81e45
commit 1e8e81b986

View File

@@ -155,7 +155,7 @@ class ObjectDrilling(PathCircularHoleBase.ObjectOp):
# move to hole location
self.commandlist.append(Path.Command('G0', {'X': p['x'], 'Y': p['y'], 'F': self.horizRapid}))
startHeight = obj.StartDepth.Value + parentJob.SetupSheet.SafeHeightOffset.Value
self.commandlist.append(Path.Command('G0', {'Z': startHeight, 'F': self.vertFeed}))
self.commandlist.append(Path.Command('G0', {'Z': startHeight, 'F': self.vertRapid}))
self.commandlist.append(Path.Command('G1', {'Z': obj.StartDepth.Value, 'F': self.vertFeed}))
# Update changes to parameters