- working on Tool Drilling

This commit is contained in:
Marius Stanciu
2020-07-08 21:35:24 +03:00
parent 45472f6193
commit a0fea17aed
4 changed files with 229 additions and 427 deletions

View File

@@ -96,10 +96,11 @@ class CNCJobObject(FlatCAMObj, CNCjob):
'nr_drills': int,
'nr_slots': int,
'offset': float,
'data': {} # a dict to hold the parameters
'gcode': "" # a string with the actual GCODE
'gcode_parsed': {} # dictionary holding the CNCJob geometry and type of geometry (cut or move)
'solid_geometry': []
'data': {}, a dict to hold the parameters
'gcode': "", a string with the actual GCODE
'gcode_parsed': [], list of dicts holding the CNCJob geometry and
type of geometry (cut or move)
'solid_geometry': [],
},
...
}