- renamed classes to have shorter names and grouped

This commit is contained in:
Marius Stanciu
2020-05-18 16:02:41 +03:00
committed by Marius
parent 4c83e87feb
commit ba3f10d355
185 changed files with 749 additions and 748 deletions

View File

@@ -10,7 +10,7 @@
# MIT Licence #
##############################################################
from FlatCAMPostProc import *
from AppPreProcessor import *
class Berta_CNC(FlatCAMPostProc):
@@ -102,7 +102,7 @@ class Berta_CNC(FlatCAMPostProc):
gcode += '(Spindle Speed: %s RPM)\n' % str(p['spindlespeed'])
gcode += (
# This line allow you to sets the machine to METRIC / INCH in the GUI
# This line allow you to sets the machine to METRIC / INCH in the AppGUI
'G20\n' if p.units.upper() == 'IN' else 'G21\n') + '\n'
# gcode += 'G21\n' # This line sets the machine to METRIC ONLY
# gcode += 'G20\n' # This line sets the machine to INCH ONLY