- the GCode generation takes now into consideration the Toolchange X-Y parameter as a starting point

- Milling Plugin - work on it; upgraded the form-to-data_storage methods
This commit is contained in:
Marius Stanciu
2021-03-15 19:29:48 +02:00
committed by Marius
parent 546f4c2361
commit bc29211507
6 changed files with 201 additions and 74 deletions

View File

@@ -964,7 +964,7 @@ class SolderPaste(AppTool):
total_gcode += res
# ## PARSE GCODE # ##
tool_cnc_dict['gcode_parsed'] = new_obj.gcode_parse()
tool_cnc_dict['gcode_parsed'] = new_obj.gcode_parse(tool_data=tool_cnc_dict['data'])
# TODO this serve for bounding box creation only; should be optimized
tool_cnc_dict['solid_geometry'] = unary_union([geo['geom'] for geo in tool_cnc_dict['gcode_parsed']])