wolfhece 2.1.117__py3-none-any.whl → 2.1.119__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wolfhece/CpGrid.py +1 -1
- wolfhece/PyDraw.py +519 -101
- wolfhece/PyVertexvectors.py +5 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/lazviewer/laz_viewer.py +884 -12
- wolfhece/lazviewer/viewer/viewer.py +14 -4
- wolfhece/opengl/py3d.py +10 -4
- wolfhece/wolf_array.py +278 -5
- wolfhece/wolf_vrt.py +18 -17
- {wolfhece-2.1.117.dist-info → wolfhece-2.1.119.dist-info}/METADATA +1 -1
- {wolfhece-2.1.117.dist-info → wolfhece-2.1.119.dist-info}/RECORD +14 -14
- {wolfhece-2.1.117.dist-info → wolfhece-2.1.119.dist-info}/WHEEL +0 -0
- {wolfhece-2.1.117.dist-info → wolfhece-2.1.119.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.117.dist-info → wolfhece-2.1.119.dist-info}/top_level.txt +0 -0
wolfhece/PyVertexvectors.py
CHANGED
@@ -7673,6 +7673,11 @@ class Zones(wx.Frame, Element_To_Draw):
|
|
7673
7673
|
|
7674
7674
|
if self.active_vector is None:
|
7675
7675
|
logging.warning(_('No vector in the active zone'))
|
7676
|
+
if self.parent is not None:
|
7677
|
+
try:
|
7678
|
+
self.parent.Active_zone(self.active_zone)
|
7679
|
+
except:
|
7680
|
+
raise Warning(_('Not supported in the current parent -- see PyVertexVectors in Activate_zone function'))
|
7676
7681
|
else:
|
7677
7682
|
self.labelactvect.SetLabel(self.active_vector.myname)
|
7678
7683
|
|