- aperture keys in the gerber 'tools' dictionary are now stored as integers instead of strings as before; need to check the application especially the Gerber Editor
- fixed issues in Gerber Editor (using the '0' insteadd of 'REG' type for apertures)
This commit is contained in:
@@ -49,7 +49,7 @@ class Roland_MDX_20(PreProc):
|
||||
|
||||
def up_to_zero_code(self, p):
|
||||
gcode = self.feedrate_code(p) + '\n'
|
||||
gcode += self.position_code(p).format(**p) + ',' + '0' + ';'
|
||||
gcode += self.position_code(p).format(**p) + ',' + 0 + ';'
|
||||
return gcode
|
||||
|
||||
def position_code(self, p):
|
||||
|
||||
Reference in New Issue
Block a user