- fixed an issue when multi depth step is larger than the depth of cut

This commit is contained in:
Marius Stanciu
2019-09-02 00:35:52 +03:00
committed by Marius
parent 1295a94af1
commit 4d9ff1c134
2 changed files with 7 additions and 2 deletions

View File

@@ -5765,8 +5765,8 @@ class CNCjob(Geometry):
return 'fail'
# made sure that depth_per_cut is no more then the z_cut
if self.z_cut < self.z_depthpercut:
self.z_depthpercut = self.z_cut
if abs(self.z_cut) < self.z_depthpercut:
self.z_depthpercut = abs(self.z_cut)
if self.z_move is None:
self.app.inform.emit(_("[ERROR_NOTCL] Travel Z parameter is None or zero."))
@@ -6073,6 +6073,10 @@ class CNCjob(Geometry):
"This is dangerous, skipping %s file") % self.options['name'])
return 'fail'
# made sure that depth_per_cut is no more then the z_cut
if abs(self.z_cut) < self.z_depthpercut:
self.z_depthpercut = abs(self.z_cut)
# ## Index first and last points in paths
# What points to index.
def get_pts(o):