- added the ability to use no path optimization

- camblib.generate_from_geometry_2(): added the usage for different kinds of path optimizations set in the Preferences -> Geometry
- some minor objects name refactoring
This commit is contained in:
Marius Stanciu
2024-03-31 18:43:44 +03:00
parent ed148df75f
commit 260b77c44a
6 changed files with 298 additions and 249 deletions

View File

@@ -96,7 +96,8 @@ class GeometryGenPrefGroupUI(OptionsGroupUI):
{'label': _('Rtree'), 'value': 'R'},
{'label': _('MetaHeuristic'), 'value': 'M'},
{'label': _('Basic'), 'value': 'B'},
{'label': _('TSA'), 'value': 'T'}
{'label': _('TSA'), 'value': 'T'},
{'label': _('None'), 'value': 'N'}
], orientation='vertical', compact=True)
opt_grid.addWidget(self.opt_algorithm_label, 0, 0)