- in Geometry Editor, in Circle Tool added UI, cursor data, radius projection and ability to add ellipses

This commit is contained in:
Marius Stanciu
2022-04-16 16:01:39 +03:00
committed by Marius
parent e399c6cddc
commit 4d496e4539
11 changed files with 449 additions and 13 deletions

View File

@@ -3497,6 +3497,10 @@ class MainGUI(QtWidgets.QMainWindow):
elif self.app.geo_editor.active_tool.name == 'polygon' and \
self.app.geo_editor.active_tool.polygon_tool.length != 0.0:
pass
elif self.app.geo_editor.active_tool.name == 'circle' and \
self.app.geo_editor.active_tool.circle_tool.x != 0.0 and \
self.app.geo_editor.active_tool.circle_tool.y != 0.0:
pass
elif self.app.geo_editor.active_tool.name == 'rectangle' and \
self.app.geo_editor.active_tool.rect_tool.length != 0.0 and \
self.app.geo_editor.active_tool.rect_tool.width != 0.0: