Merge pull request #23957 from tarman3/leadinout_fix

CAM: LeadInOut - Fix for rapid move in end
This commit is contained in:
sliptonic
2025-09-22 11:33:12 -05:00
committed by GitHub

View File

@@ -818,6 +818,8 @@ class ObjectDressup:
# Get finish index of mill command for one profile
def findLastCutMultiProfileIndex(self, source, startIndex):
if startIndex >= len(source):
return len(source) - 1
for i in range(startIndex, len(source), +1):
if not self.isCuttingMove(source[i]):
return i - 1