- added the Exclusion zones processing to Geometry GCode generation

This commit is contained in:
Marius Stanciu
2020-05-23 04:32:57 +03:00
committed by Marius
parent 48fbc10f6d
commit 2e8d5b3b96
5 changed files with 346 additions and 63 deletions

View File

@@ -106,10 +106,10 @@ class Toolchange_Probe_MACH3(PreProc):
return g
def lift_code(self, p):
return 'G00 Z' + self.coordinate_format%(p.coords_decimals, p.z_move)
return 'G00 Z' + self.coordinate_format % (p.coords_decimals, p.z_move)
def down_code(self, p):
return 'G01 Z' + self.coordinate_format%(p.coords_decimals, p.z_cut)
return 'G01 Z' + self.coordinate_format % (p.coords_decimals, p.z_cut)
def toolchange_code(self, p):
z_toolchange = p.z_toolchange