Drilling handles multiple locations

Jog rates started
Automatically create default tool in new job.
This commit is contained in:
sliptonic
2016-08-16 08:53:33 -05:00
committed by Yorik van Havre
parent 7dc92e768f
commit b7a6f916d8
20 changed files with 1941 additions and 224 deletions

View File

@@ -207,8 +207,9 @@ def parse(pathobj):
for param in params:
if param in c.Parameters:
if param == 'F':
outstring.append(
param + format(c.Parameters['F'], '.2f'))
if c.Name not in ["G0", "G00"]: #linuxcnc doesn't use rapid speeds
outstring.append(
param + format(c.Parameters['F'], '.2f'))
elif param == 'T':
outstring.append(param + str(c.Parameters['T']))
else: