wolfhece 2.1.69__py3-none-any.whl → 2.1.71__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/PyDraw.py +77 -2
- wolfhece/apps/version.py +1 -1
- wolfhece/libs/wolfogl.cp310-win_amd64.pyd +0 -0
- wolfhece/wolf_array.py +86 -7
- {wolfhece-2.1.69.dist-info → wolfhece-2.1.71.dist-info}/METADATA +1 -1
- {wolfhece-2.1.69.dist-info → wolfhece-2.1.71.dist-info}/RECORD +9 -9
- {wolfhece-2.1.69.dist-info → wolfhece-2.1.71.dist-info}/WHEEL +0 -0
- {wolfhece-2.1.69.dist-info → wolfhece-2.1.71.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.69.dist-info → wolfhece-2.1.71.dist-info}/top_level.txt +0 -0
wolfhece/PyDraw.py
CHANGED
@@ -140,7 +140,67 @@ class draw_type(Enum):
|
|
140
140
|
WMSFORE = 'wms-foreground'
|
141
141
|
TILES = 'tiles'
|
142
142
|
|
143
|
+
COLORS1TO9 = [(0, 0, 255, 255),
|
144
|
+
(0, 255, 0, 255),
|
145
|
+
(0, 128, 255, 255),
|
146
|
+
(255, 255, 0, 255),
|
147
|
+
(255, 165, 0, 255),
|
148
|
+
(128, 0, 128, 255),
|
149
|
+
(255, 192, 203, 255),
|
150
|
+
(165, 42, 42, 255),
|
151
|
+
(128, 128, 128, 255)]
|
143
152
|
|
153
|
+
class Colors_1to9(wx.Frame):
|
154
|
+
|
155
|
+
def __init__(self, parent):
|
156
|
+
|
157
|
+
super(Colors_1to9, self).__init__(parent, title=_('Colors 1 to 9'), size=(200, 380))
|
158
|
+
|
159
|
+
global COLORS1TO9
|
160
|
+
|
161
|
+
panel = wx.Panel(self)
|
162
|
+
panel.SetBackgroundColour(wx.Colour(255, 255, 255))
|
163
|
+
|
164
|
+
sizer = wx.BoxSizer(wx.VERTICAL)
|
165
|
+
|
166
|
+
self.pickers={}
|
167
|
+
for i in range(9):
|
168
|
+
horsizer = wx.BoxSizer(wx.HORIZONTAL)
|
169
|
+
horsizer.Add(wx.StaticText(panel, label=_('Color ') + str(i + 1)), 0, wx.ALL, 2)
|
170
|
+
color = COLORS1TO9[i]
|
171
|
+
color = wx.Colour(color[0], color[1], color[2], color[3])
|
172
|
+
self.pickers[i] = wx.ColourPickerCtrl(panel, colour=color)
|
173
|
+
horsizer.Add(self.pickers[i], 0, wx.ALL, 2)
|
174
|
+
sizer.Add(horsizer, 0, wx.ALL, 2)
|
175
|
+
|
176
|
+
cmdOK = wx.Button(panel, wx.ID_OK, _('OK'))
|
177
|
+
cmdCancel = wx.Button(panel, wx.ID_CANCEL, _('Cancel'))
|
178
|
+
|
179
|
+
horsizer = wx.BoxSizer(wx.HORIZONTAL)
|
180
|
+
horsizer.Add(cmdOK, 0, wx.ALL, 5)
|
181
|
+
horsizer.Add(cmdCancel, 0, wx.ALL, 5)
|
182
|
+
|
183
|
+
sizer.Add(horsizer, 0, wx.ALL, 5)
|
184
|
+
|
185
|
+
panel.SetSizer(sizer)
|
186
|
+
|
187
|
+
self.Bind(wx.EVT_BUTTON, self.OnOK, cmdOK)
|
188
|
+
self.Bind(wx.EVT_BUTTON, self.OnCancel, cmdCancel)
|
189
|
+
|
190
|
+
self.Show()
|
191
|
+
|
192
|
+
def OnOK(self, event):
|
193
|
+
global COLORS1TO9
|
194
|
+
|
195
|
+
for i in range(9):
|
196
|
+
color = self.pickers[i].GetColour()
|
197
|
+
COLORS1TO9[i] = (color.Red(), color.Green(), color.Blue(), color.Alpha())
|
198
|
+
|
199
|
+
self.Close()
|
200
|
+
|
201
|
+
def OnCancel(self, event):
|
202
|
+
self.Close()
|
203
|
+
|
144
204
|
class DragdropFileTarget(wx.FileDropTarget):
|
145
205
|
def __init__(self, window:"WolfMapViewer"):
|
146
206
|
wx.FileDropTarget.__init__(self)
|
@@ -609,6 +669,7 @@ class WolfMapViewer(wx.Frame):
|
|
609
669
|
self.helpmenu.Append(wx.ID_ANY, _('Shortcuts'), _('Shortcuts'))
|
610
670
|
self.helpmenu.Append(wx.ID_ANY, _('Show logs/informations'), _('Logs'))
|
611
671
|
self.helpmenu.Append(wx.ID_ANY, _('Show values'), _('Data/Values'))
|
672
|
+
self.helpmenu.Append(wx.ID_ANY, _('Colors for selections 1->9'), _('Selections'))
|
612
673
|
self.helpmenu.Append(wx.ID_ANY, _('About'), _('About'))
|
613
674
|
self.helpmenu.Append(wx.ID_ANY, _('Check for updates'), _('Update?'))
|
614
675
|
|
@@ -4456,6 +4517,11 @@ class WolfMapViewer(wx.Frame):
|
|
4456
4517
|
self.check_tooltip()
|
4457
4518
|
autoscale = False
|
4458
4519
|
|
4520
|
+
elif itemlabel == _('Colors for selections 1->9'):
|
4521
|
+
autoscale = False
|
4522
|
+
|
4523
|
+
newcolors = Colors_1to9(self)
|
4524
|
+
|
4459
4525
|
elif itemlabel == _('About'):
|
4460
4526
|
#print About Frame
|
4461
4527
|
self.print_About()
|
@@ -9013,12 +9079,21 @@ class WolfMapViewer(wx.Frame):
|
|
9013
9079
|
logging.info(_('Please select some nodes before transfering to the dictionary, not ALL !'))
|
9014
9080
|
return
|
9015
9081
|
|
9016
|
-
colors = [(0, 0, 255, 255),
|
9082
|
+
# colors = [(0, 0, 255, 255),
|
9083
|
+
# (0, 255, 0, 255),
|
9084
|
+
# (0, 128, 255, 255),
|
9085
|
+
# (255, 255, 0, 255),
|
9086
|
+
# (255, 165, 0, 255),
|
9087
|
+
# (128, 0, 128, 255),
|
9088
|
+
# (255, 192, 203, 255),
|
9089
|
+
# (165, 42, 42, 255),
|
9090
|
+
# (128, 128, 128, 255)]
|
9091
|
+
|
9017
9092
|
idx = LIST_1TO9.index(key)
|
9018
9093
|
if idx > 8:
|
9019
9094
|
idx -= 9
|
9020
9095
|
|
9021
|
-
self.active_array.SelectionData.move_selectionto(str(idx+1),
|
9096
|
+
self.active_array.SelectionData.move_selectionto(str(idx+1), COLORS1TO9[idx])
|
9022
9097
|
|
9023
9098
|
elif key == wx.WXK_F1:
|
9024
9099
|
self.read_last_result()
|
wolfhece/apps/version.py
CHANGED
Binary file
|
wolfhece/wolf_array.py
CHANGED
@@ -125,7 +125,7 @@ WOLF_ARRAY_MNAP_INTEGER = 20
|
|
125
125
|
|
126
126
|
WOLF_ARRAY_MB = [WOLF_ARRAY_MB_SINGLE, WOLF_ARRAY_MB_INTEGER, WOLF_ARRAY_MNAP_INTEGER]
|
127
127
|
|
128
|
-
VERSION_RGB =
|
128
|
+
VERSION_RGB = 3
|
129
129
|
|
130
130
|
from numba import jit
|
131
131
|
|
@@ -1640,7 +1640,7 @@ class Ops_Array(wx.Frame):
|
|
1640
1640
|
|
1641
1641
|
self.interp2D = wx.Button(self.Interpolation, wx.ID_ANY, _("2D Interpolation on selection"), wx.DefaultPosition,
|
1642
1642
|
wx.DefaultSize, 0)
|
1643
|
-
self.interp2D.SetToolTip(_('Spatial interpolation based on nodes stored in named groups. \n The interpolation apply only on the current selection.'))
|
1643
|
+
self.interp2D.SetToolTip(_('Spatial interpolation based on nodes stored in the named groups. \n The interpolation apply only on the current selection.'))
|
1644
1644
|
gSizer1.Add(self.interp2D, 0, wx.EXPAND)
|
1645
1645
|
self.interp2D.Bind(wx.EVT_BUTTON, self.interpolation2D)
|
1646
1646
|
|
@@ -1908,6 +1908,11 @@ class Ops_Array(wx.Frame):
|
|
1908
1908
|
sizermask = wx.BoxSizer(wx.VERTICAL)
|
1909
1909
|
self.mask.SetSizer(sizermask)
|
1910
1910
|
|
1911
|
+
maskdata = wx.Button(self.mask, wx.ID_ANY, _("Mask nodes (only Condition )"), wx.DefaultPosition, wx.DefaultSize, 0)
|
1912
|
+
maskdata.SetToolTip(_("This action will use the condition AND NOT the operator to mask some selected nodes \n If no node selectd --> Nothing to do !!"))
|
1913
|
+
sizermask.Add(maskdata, 1, wx.EXPAND)
|
1914
|
+
maskdata.Bind(wx.EVT_BUTTON, self.Onmask)
|
1915
|
+
|
1911
1916
|
unmaskall = wx.Button(self.mask, wx.ID_ANY, _("Unmask all"), wx.DefaultPosition, wx.DefaultSize, 0)
|
1912
1917
|
sizermask.Add(unmaskall, 1, wx.EXPAND)
|
1913
1918
|
unmaskall.Bind(wx.EVT_BUTTON, self.Unmaskall)
|
@@ -1970,10 +1975,10 @@ class Ops_Array(wx.Frame):
|
|
1970
1975
|
self.SelectOp.SetToolTip(_("This action will use the condition AND NOT the operator to select some nodes"))
|
1971
1976
|
sizeropgen.Add(self.SelectOp, 1, wx.EXPAND)
|
1972
1977
|
|
1973
|
-
|
1974
|
-
|
1975
|
-
sizeropgen.Add(
|
1976
|
-
|
1978
|
+
self.nbselect2 = wx.StaticText(self.operation, wx.ID_ANY, _("nb"), wx.DefaultPosition, wx.DefaultSize, 0)
|
1979
|
+
self.nbselect2.Wrap(-1)
|
1980
|
+
sizeropgen.Add(self.nbselect2, 0, wx.EXPAND)
|
1981
|
+
self.nbselect2.SetToolTip(_("Number of selected nodes"))
|
1977
1982
|
|
1978
1983
|
self.operation.SetSizer(sizeropgen)
|
1979
1984
|
self.operation.Layout()
|
@@ -2054,7 +2059,19 @@ class Ops_Array(wx.Frame):
|
|
2054
2059
|
def interpolation2D(self, event: wx.MouseEvent):
|
2055
2060
|
""" calling Interpolation 2D """
|
2056
2061
|
|
2057
|
-
self.parentarray.
|
2062
|
+
keys = list(self.parentarray.SelectionData.selections.keys())
|
2063
|
+
keys = [k for k in keys if len(self.parentarray.SelectionData.selections[k]) >0]
|
2064
|
+
|
2065
|
+
if len(keys) > 0:
|
2066
|
+
if len(keys) == 1:
|
2067
|
+
self.parentarray.interpolation2D(keys[0])
|
2068
|
+
else:
|
2069
|
+
with wx.SingleChoiceDialog(self, 'Choose the selection to interpolate', 'Selections', keys) as dlg:
|
2070
|
+
if dlg.ShowModal() == wx.ID_OK:
|
2071
|
+
selection = dlg.GetStringSelection()
|
2072
|
+
self.parentarray.interpolation2D(selection)
|
2073
|
+
|
2074
|
+
dlg.Destroy()
|
2058
2075
|
|
2059
2076
|
def Unmaskall(self, event: wx.MouseEvent):
|
2060
2077
|
"""
|
@@ -2169,6 +2186,7 @@ class Ops_Array(wx.Frame):
|
|
2169
2186
|
|
2170
2187
|
self.parentarray.SelectionData.select_all()
|
2171
2188
|
self.parentarray.myops.nbselect.SetLabelText('All')
|
2189
|
+
self.parentarray.myops.nbselect2.SetLabelText('All')
|
2172
2190
|
|
2173
2191
|
def OnMoveSelect(self, event):
|
2174
2192
|
"""Transfert de la sélection courante dans un dictionnaire"""
|
@@ -2191,6 +2209,7 @@ class Ops_Array(wx.Frame):
|
|
2191
2209
|
self.parentarray.SelectionData.reset()
|
2192
2210
|
|
2193
2211
|
self.nbselect.SetLabelText('0')
|
2212
|
+
self.nbselect2.SetLabelText('0')
|
2194
2213
|
self.minx.SetLabelText('0')
|
2195
2214
|
self.miny.SetLabelText('0')
|
2196
2215
|
self.maxx.SetLabelText('0')
|
@@ -2296,6 +2315,8 @@ class Ops_Array(wx.Frame):
|
|
2296
2315
|
|
2297
2316
|
self.parentarray.SelectionData.condition_select(curcond, curcondvalue)
|
2298
2317
|
|
2318
|
+
self.refresh_array()
|
2319
|
+
|
2299
2320
|
def OnApplyNullvalue(self, event:wx.MouseEvent):
|
2300
2321
|
""" Apply null value to the array """
|
2301
2322
|
|
@@ -3492,6 +3513,7 @@ class SelectionData():
|
|
3492
3513
|
if self.parent.myops is not None:
|
3493
3514
|
|
3494
3515
|
self.parent.myops.nbselect.SetLabelText(str(nb))
|
3516
|
+
self.parent.myops.nbselect2.SetLabelText(str(nb))
|
3495
3517
|
if nb>0:
|
3496
3518
|
|
3497
3519
|
self.parent.myops.minx.SetLabelText('{:.3f}'.format(xmin))
|
@@ -4258,6 +4280,7 @@ class SelectionDataMB(SelectionData):
|
|
4258
4280
|
if self.parent.myops is not None:
|
4259
4281
|
|
4260
4282
|
self.parent.myops.nbselect.SetLabelText(str(nb))
|
4283
|
+
self.parent.myops.nbselect2.SetLabelText(str(nb))
|
4261
4284
|
|
4262
4285
|
if nb>0:
|
4263
4286
|
self.parent.myops.minx.SetLabelText('{:.3f}'.format(xmin))
|
@@ -8180,6 +8203,62 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
8180
8203
|
wolfogl.addmeall_pal(self.array, clr_float, self.mypal.values, ox, oy, dx, dy, jstart, jend, istart, iend, cursize,
|
8181
8204
|
self.nullvalue, self.alpha, int(self.mypal.interval_cst), -1.)
|
8182
8205
|
|
8206
|
+
elif VERSION_RGB == 3:
|
8207
|
+
if self.wolftype == WOLF_ARRAY_FULL_INTEGER8:
|
8208
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8209
|
+
if self.nbnotnull > 0:
|
8210
|
+
wolfogl.addme_int8_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8211
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8212
|
+
elif self.nbnotnull > 0:
|
8213
|
+
wolfogl.addmeall_int8_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8214
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8215
|
+
elif self.wolftype in [WOLF_ARRAY_FULL_INTEGER16, WOLF_ARRAY_FULL_INTEGER16_2]:
|
8216
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8217
|
+
if self.nbnotnull > 0:
|
8218
|
+
wolfogl.addme_int16_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8219
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8220
|
+
elif self.nbnotnull > 0:
|
8221
|
+
wolfogl.addmeall_int16_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8222
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8223
|
+
elif self.wolftype == WOLF_ARRAY_FULL_INTEGER:
|
8224
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8225
|
+
if self.nbnotnull > 0:
|
8226
|
+
wolfogl.addme_int_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8227
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8228
|
+
elif self.nbnotnull > 0:
|
8229
|
+
wolfogl.addmeall_int_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8230
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8231
|
+
elif self.wolftype == WOLF_ARRAY_FULL_DOUBLE:
|
8232
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8233
|
+
if self.nbnotnull > 0:
|
8234
|
+
wolfogl.addme_double_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8235
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8236
|
+
elif self.nbnotnull > 0:
|
8237
|
+
wolfogl.addmeall_double_pal_mask(self.array, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8238
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), self.array.mask)
|
8239
|
+
elif self.wolftype not in [WOLF_ARRAY_FULL_SINGLE, WOLF_ARRAY_HILLSHAPE]:
|
8240
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8241
|
+
if self.nbnotnull > 0:
|
8242
|
+
wolfogl.addme_pal_mask(self._tmp_float32, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8243
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), -1., self.array.mask)
|
8244
|
+
elif self.nbnotnull > 0:
|
8245
|
+
wolfogl.addmeall_pal_mask(self._tmp_float32, self.mypal.colorsflt, self.mypal.values, ox, oy, dx, dy, jstart,
|
8246
|
+
jend, istart, iend, cursize, self.nullvalue, self.alpha, int(self.mypal.interval_cst), -1., self.array.mask)
|
8247
|
+
else:
|
8248
|
+
clr_float = self.mypal.colorsflt.copy()
|
8249
|
+
clr_float[:,3] = self.alpha
|
8250
|
+
if '_hillshade' in self.idx:
|
8251
|
+
clr_float[1,3] = 0.
|
8252
|
+
|
8253
|
+
if self.nbnotnull != self.nbx * self.nby:
|
8254
|
+
if self.nbnotnull > 0:
|
8255
|
+
|
8256
|
+
wolfogl.addme_pal_mask(self.array, clr_float, self.mypal.values, ox, oy, dx, dy, jstart, jend, istart, iend, cursize,
|
8257
|
+
self.nullvalue, self.alpha, int(self.mypal.interval_cst), -1., self.array.mask)
|
8258
|
+
elif self.nbnotnull > 0:
|
8259
|
+
wolfogl.addmeall_pal_mask(self.array, clr_float, self.mypal.values, ox, oy, dx, dy, jstart, jend, istart, iend, cursize,
|
8260
|
+
self.nullvalue, self.alpha, int(self.mypal.interval_cst), -1., self.array.mask)
|
8261
|
+
|
8183
8262
|
except Exception as e:
|
8184
8263
|
logging.error(repr(e))
|
8185
8264
|
raise NameError(_('OpenGL error in WolfArray.fillonecellgrid -- Please report this case with the data file and the context in which the error occured'))
|
@@ -7,7 +7,7 @@ wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
|
|
7
7
|
wolfhece/Model1D.py,sha256=SI4oNF_J3MdjiWZoizS8kuRXLMVyymX9dYfYJNVCQVI,476989
|
8
8
|
wolfhece/PyConfig.py,sha256=FB8u0belXOXTb03Ln6RdVWvMgjzi3oGPCmw2dWa3lNg,8332
|
9
9
|
wolfhece/PyCrosssections.py,sha256=FnmM9DWY_SAF2EDH9Gu2PojXNtSTRF4-aYQuAAJXBh4,112771
|
10
|
-
wolfhece/PyDraw.py,sha256=
|
10
|
+
wolfhece/PyDraw.py,sha256=AXcgzwvTRRnzj7p45fr8QVMdLdoLPe4yIZaXjUoz040,413560
|
11
11
|
wolfhece/PyGui.py,sha256=oBIBpgBQRR_XXucKE5-RFrtqKj0DRg9VlUCRo8Mzalc,105009
|
12
12
|
wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
|
13
13
|
wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
|
@@ -48,7 +48,7 @@ wolfhece/pywalous.py,sha256=yRaWJjKckXef1d9D5devP0yFHC9uc6kRV4G5x9PNq9k,18972
|
|
48
48
|
wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
|
49
49
|
wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
|
50
50
|
wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
|
51
|
-
wolfhece/wolf_array.py,sha256=
|
51
|
+
wolfhece/wolf_array.py,sha256=NV1pGcGsXXGIVSjFBsfpenvmBUSTkjPWbgZ2vbWuELA,385914
|
52
52
|
wolfhece/wolf_hist.py,sha256=7jeVrgSkM3ErJO6SRMH_PGzfLjIdw8vTy87kesldggk,3582
|
53
53
|
wolfhece/wolf_texture.py,sha256=DS5eobLxrq9ljyebYfpMSQPn8shkUAZZVfqrOKN_QUU,16951
|
54
54
|
wolfhece/wolf_tiles.py,sha256=2Ho2I20rHRY81KXxjgLOYISdF4OkJ2d6omeY4shDoGI,10386
|
@@ -72,7 +72,7 @@ wolfhece/apps/check_install.py,sha256=Xoi_d8MzKzNAy2xqEpERdsqgRPu0hbBWukI0WkIYzD
|
|
72
72
|
wolfhece/apps/curvedigitizer.py,sha256=Yps4bcayzbsz0AoVc_dkSk35dEhhn_esIBy1Ziefgmk,5334
|
73
73
|
wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
|
74
74
|
wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
|
75
|
-
wolfhece/apps/version.py,sha256=
|
75
|
+
wolfhece/apps/version.py,sha256=rqw8QaFT71GR38qeOp9kpMIUqgZVxzFlK5B3lDQwa5g,388
|
76
76
|
wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
|
77
77
|
wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
|
78
78
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -194,7 +194,7 @@ wolfhece/libs/vcomp100.dll,sha256=NKvXc8hc4MrFa9k8ErALA6OmldGfR3zidaZPCZhMVJI,57
|
|
194
194
|
wolfhece/libs/vcruntime140.dll,sha256=gPBsB0DzEBn3b7E5ihESs-AtG4Cu59OnONR1QI17TGA,98720
|
195
195
|
wolfhece/libs/vcruntime140_1.dll,sha256=KZJoe26L6i76Krqne_OribgfhN6LxJQEcs0Xn_01hP8,38304
|
196
196
|
wolfhece/libs/verify_wolf.cp310-win_amd64.pyd,sha256=Cej6r7o8cOF58sXs97kjPN4ddd-ZjDyYZ_WkR0Nmivo,128512
|
197
|
-
wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=
|
197
|
+
wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=0rCDT7-G8Sq7NBisUDZ4HqAfesZChRH-NH9s70Ch2I8,415232
|
198
198
|
wolfhece/libs/wolfpy.cp310-win_amd64.pyd,sha256=6omqEaxmQll-Gg24e90wVomAB9rO_tyyOES2FewXn58,36457472
|
199
199
|
wolfhece/libs/zlib1.dll,sha256=E9a0e62VgmG1A8ohZzhVCmmfGtbyXxXu4aFeADTNJ30,77824
|
200
200
|
wolfhece/libs/GL/gl.h,sha256=IhsS_fOLa8GW9MpiLZebe9QYRy6uIB_qK_uQMWMOoeg,46345
|
@@ -283,8 +283,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
|
|
283
283
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
284
284
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
285
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
286
|
-
wolfhece-2.1.
|
287
|
-
wolfhece-2.1.
|
288
|
-
wolfhece-2.1.
|
289
|
-
wolfhece-2.1.
|
290
|
-
wolfhece-2.1.
|
286
|
+
wolfhece-2.1.71.dist-info/METADATA,sha256=8vSyAQXGeAxh_xR9kdlgShsERbzgKUbpRnP_n5NGdrE,2570
|
287
|
+
wolfhece-2.1.71.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
288
|
+
wolfhece-2.1.71.dist-info/entry_points.txt,sha256=Q5JuIWV4odeIJI3qc6fV9MwRoz0ezqPVlFC1Ppm_vdQ,395
|
289
|
+
wolfhece-2.1.71.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
290
|
+
wolfhece-2.1.71.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|