- in CNCJob UI Autolevelling: on manual add of probe points, only voronoi diagram is calculated
This commit is contained in:
@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
|
|||||||
|
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
|
20.09.2020
|
||||||
|
|
||||||
|
- in CNCJob UI Autolevelling: on manual add of probe points, only voronoi diagram is calculated
|
||||||
|
|
||||||
19.09.2020
|
19.09.2020
|
||||||
|
|
||||||
- removed some brackets in the GRBL laser preprocessor due of GRBL firmware interpreting the first closing bracket as the comment end
|
- removed some brackets in the GRBL laser preprocessor due of GRBL firmware interpreting the first closing bracket as the comment end
|
||||||
|
|||||||
@@ -1020,12 +1020,14 @@ class CNCJobObject(FlatCAMObj, CNCjob):
|
|||||||
|
|
||||||
self.app.inform.emit(_("Finished adding Probe Points..."))
|
self.app.inform.emit(_("Finished adding Probe Points..."))
|
||||||
|
|
||||||
pts_list = []
|
al_method = self.ui.al_method_radio.get_value()
|
||||||
for k in self.al_voronoi_geo_storage:
|
if al_method == 'v':
|
||||||
pts_list.append(self.al_voronoi_geo_storage[k]['point'])
|
pts_list = []
|
||||||
self.generate_voronoi_geometry(pts=pts_list)
|
for k in self.al_voronoi_geo_storage:
|
||||||
|
pts_list.append(self.al_voronoi_geo_storage[k]['point'])
|
||||||
|
self.generate_voronoi_geometry(pts=pts_list)
|
||||||
|
|
||||||
self.probing_gcode_text = self.probing_gcode()
|
self.probing_gcode_text = self.probing_gcode(self.al_voronoi_geo_storage)
|
||||||
|
|
||||||
# rebuild the al table
|
# rebuild the al table
|
||||||
self.build_al_table_sig.emit()
|
self.build_al_table_sig.emit()
|
||||||
|
|||||||
Reference in New Issue
Block a user