wolfhece 2.1.30__py3-none-any.whl → 2.1.33__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/PyPalette.py CHANGED
@@ -329,7 +329,7 @@ class wolfpalette(wx.Frame,LinearSegmentedColormap):
329
329
  nbl=i-1
330
330
  break
331
331
 
332
- if i < self.nb-1:
332
+ if i < self.nb:
333
333
  self.nb = i
334
334
  self.values=self.values[0:i]
335
335
  self.colors=self.colors[0:i,:]
wolfhece/apps/version.py CHANGED
@@ -5,7 +5,7 @@ class WolfVersion():
5
5
 
6
6
  self.major = 2
7
7
  self.minor = 1
8
- self.patch = 30
8
+ self.patch = 33
9
9
 
10
10
  def __str__(self):
11
11
 
wolfhece/opengl/py3d.py CHANGED
@@ -1220,22 +1220,25 @@ class CanvasOGL(glcanvas.GLCanvas):
1220
1220
 
1221
1221
  x,y,idx,alpha = self.picker[locx, locy]
1222
1222
 
1223
- logging.info('coords: {} - {}'.format(x,y))
1224
-
1225
- r,g,b = self.colors[locx, locy]
1226
- logging.info('color: {} - {} - {}'.format(r,g,b))
1223
+ # r,g,b = self.colors[locx, locy]
1224
+ # logging.info('color: {} - {} - {}'.format(r,g,b))
1227
1225
 
1228
1226
  self.drawposition = not self.drawposition
1229
1227
 
1230
1228
  curarray = self.arrays[list(self.arrays.keys())[int(idx)-1]]
1231
- i = int(x / curarray.dx)
1232
- j = int(y / curarray.dy)
1233
- z = curarray.ztexture[i, j]
1234
- xyz = self.mvp_glm * vec4(x, y, z, 1.)
1229
+ i = int(x)
1230
+ j = int(y)
1231
+
1232
+ if i > 0 and i < curarray.ztexture.shape[0] and j > 0 and j < curarray.ztexture.shape[1]:
1233
+ z = curarray.ztexture[i, j]
1235
1234
 
1236
- self.textTodraw.append(Text_Image_Texture('{z:.3f}', self.parent, Text_Infos(Font_Priority.FONTSIZE, colour=(255,255,255,255)), None, x, y))
1235
+ logging.info('coords: {} - {} - {}'.format(x,y,z))
1237
1236
 
1238
- self.Refresh()
1237
+ # xyz = self.mvp_glm * vec4(x, y, z, 1.)
1238
+
1239
+ # self.textTodraw.append(Text_Image_Texture('{z:.3f}', self.parent, Text_Infos(Font_Priority.FONTSIZE, colour=(255,255,255,255)), None, x, y))
1240
+
1241
+ # self.Refresh()
1239
1242
 
1240
1243
  def OnRightUp(self, event:wx.MouseEvent):
1241
1244
  """ Called when the right mouse button is released."""
@@ -1702,10 +1705,10 @@ class CanvasOGL(glcanvas.GLCanvas):
1702
1705
 
1703
1706
  glFinish()
1704
1707
 
1705
- glBindTexture(GL_TEXTURE_2D, self._textureout)
1706
- self.colors = np.zeros((self.height, self.width, 3), dtype=np.uint8)
1707
- glGetTexImage(GL_TEXTURE_2D, 0, GL_RGB, GL_UNSIGNED_BYTE, self.colors, np.uint8)
1708
- self.colors = self.colors.swapaxes(0, 1)
1708
+ # glBindTexture(GL_TEXTURE_2D, self._textureout)
1709
+ # self.colors = np.zeros((self.height, self.width, 3), dtype=np.uint8)
1710
+ # glGetTexImage(GL_TEXTURE_2D, 0, GL_RGB, GL_UNSIGNED_BYTE, self.colors, np.uint8)
1711
+ # self.colors = self.colors.swapaxes(0, 1)
1709
1712
 
1710
1713
  glBindTexture(GL_TEXTURE_2D, self._posout)
1711
1714
  self.picker = np.zeros((self.height, self.width, 4), dtype=np.float32)
@@ -1754,6 +1757,8 @@ class Wolf_Viewer3D(wx.Frame):
1754
1757
 
1755
1758
  super(Wolf_Viewer3D, self).__init__(parent, title=title, size=(640, 480))
1756
1759
  self.canvas = CanvasOGL(self)
1760
+ self.sx = 1.
1761
+ self.sy = 1.
1757
1762
  self.Show()
1758
1763
 
1759
1764
  @property
@@ -868,7 +868,11 @@ class Config_Manager_2D_GPU:
868
868
  else:
869
869
  logging.error(_("No 'bathymetry.tif' file found in the root directory !"))
870
870
 
871
- def create_simulation(self, dir:Path, idx_hydros:list[int] = [-1], delete_existing:bool = False) -> list[Path]:
871
+ def create_simulation(self,
872
+ dir:Path,
873
+ idx_hydros:list[int] = [-1],
874
+ delete_existing:bool = False,
875
+ preserve_ic:bool=False) -> list[Path]:
872
876
  """ Create a simulation from different hydrographs """
873
877
 
874
878
  if isinstance(dir, str):
@@ -996,9 +1000,23 @@ class Config_Manager_2D_GPU:
996
1000
  cursim.nap[cursim.bathymetry != 99999.] = 1
997
1001
 
998
1002
  if curic is None:
999
- cursim.h = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1000
- cursim.qx = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1001
- cursim.qy = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1003
+ if not preserve_ic:
1004
+ cursim.h = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1005
+ cursim.qx = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1006
+ cursim.qy = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1007
+ else:
1008
+ if (curdir / 'h.npy').exists():
1009
+ cursim.h = np.load(curdir / 'h.npy')
1010
+ else:
1011
+ cursim.h = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1012
+ if (curdir / 'qx.npy').exists():
1013
+ cursim.qx = np.load(curdir / 'qx.npy')
1014
+ else:
1015
+ cursim.qx = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1016
+ if (curdir / 'qy.npy').exists():
1017
+ cursim.qy = np.load(curdir / 'qy.npy')
1018
+ else:
1019
+ cursim.qy = np.zeros((self._header.nbx, self._header.nby), dtype=np.float32)
1002
1020
  else:
1003
1021
  if curic.h is not None:
1004
1022
  cursim.h = curic.h
@@ -1466,7 +1484,13 @@ class UI_Manager_2D_GPU():
1466
1484
  destroy_if_exists = ret == wx.ID_YES
1467
1485
  dlg.Destroy()
1468
1486
 
1469
- allsims = self._parent.create_simulation(Path(path), hydro, destroy_if_exists)
1487
+ if not destroy_if_exists:
1488
+ dlg = wx.MessageDialog(None, _('Do you want to preserve initial conditions ?'), _('Warning'), wx.YES_NO)
1489
+ ret = dlg.ShowModal()
1490
+ preserve_ic = ret == wx.ID_YES
1491
+ dlg.Destroy()
1492
+
1493
+ allsims = self._parent.create_simulation(Path(path), hydro, destroy_if_exists, preserve_ic)
1470
1494
 
1471
1495
  self._parent.load_data()
1472
1496
 
@@ -1561,10 +1585,31 @@ class UI_Manager_2D_GPU():
1561
1585
 
1562
1586
  def _callbackwp(self):
1563
1587
  """ Callback for wolfparam """
1564
- for cursim, curwp in self._wp.items():
1565
- if curwp.Shown:
1566
- cursim.from_wolfparam(curwp)
1567
- cursim.save_json()
1588
+ for cursim in self._wp:
1589
+ curwp = self._wp[cursim]
1590
+ if curwp is not None:
1591
+ try:
1592
+ if curwp.Shown:
1593
+ cursim.from_wolfparam(curwp)
1594
+ cursim.save_json()
1595
+ except Exception as e:
1596
+ self._wp[cursim] = None
1597
+ logging.debug(_('Error while saving parameters for simulation {}'.format(cursim.path.name)))
1598
+ logging.debug(str(e))
1599
+
1600
+ def _callbackwp_destroy(self):
1601
+ """ Callback for wolfparam """
1602
+ for cursim in self._wp:
1603
+ curwp = self._wp[cursim]
1604
+ if curwp is not None:
1605
+ try:
1606
+ if curwp.Shown:
1607
+ cursim.from_wolfparam(curwp)
1608
+ cursim.save_json()
1609
+ except Exception as e:
1610
+ self._wp[cursim] = None
1611
+ logging.debug(_('Error while saving parameters for simulation {}'.format(cursim.path.name)))
1612
+ logging.debug(str(e))
1568
1613
 
1569
1614
  def OnActivateTreeElem(self, e):
1570
1615
  """
@@ -1707,7 +1752,7 @@ class UI_Manager_2D_GPU():
1707
1752
 
1708
1753
  wp = sim.to_wolfparam()
1709
1754
  self._wp[sim] = wp
1710
- wp.set_callbacks(self._callbackwp, self._callbackwp)
1755
+ wp.set_callbacks(self._callbackwp, self._callbackwp_destroy)
1711
1756
  wp._set_gui(title='Parameters for simulation {}'.format(mydata['path'].name), toShow=False)
1712
1757
  wp.hide_selected_buttons()
1713
1758
  wp.Show()
@@ -56,7 +56,8 @@ float get_value(sampler2DRect tex, vec2 pos) {
56
56
  float posx = (pos.x - origx) / dx;
57
57
  float posy = (pos.y - origy) / dy;
58
58
 
59
- vec2 texCoord = vec2(posx, posy);
59
+ //vec2 texCoord = vec2(posx, posy);
60
+ vec2 texCoord = vec2(posy, posx);
60
61
 
61
62
  float zValue = texture(tex, texCoord).r * zScale;
62
63
  return zValue;
wolfhece/wolf_array.py CHANGED
@@ -46,9 +46,10 @@ try:
46
46
  except:
47
47
  msg=_('Error importing wolfogl.pyd')
48
48
  msg+=_(' Python version : ' + sys.version)
49
- msg+=_(' If your Python version is not 3.7.x or 3.9.x, you need to compile an adapted library with compile_wcython.py in wolfhece library path')
50
- msg+=_(' See comments in compile_wcython.py or launch *python compile_wcython.py build_ext --inplace* in :')
49
+ msg+=_(' If your Python version is not 3.10.x, you need to get an adapted library in wolfhece library path libs')
50
+ msg+=_(' Please contact us or launch *python compile_wcython.py build_ext --inplace* in :')
51
51
  msg+=' ' + os.path.dirname(__file__)
52
+ msg+=_(' if you have the source files of the Cython modules.')
52
53
 
53
54
  raise Exception(msg)
54
55
 
@@ -4437,7 +4438,10 @@ class WolfArray(Element_To_Draw, header_wolf):
4437
4438
  return
4438
4439
 
4439
4440
  self._quads = self.get_centers()
4440
- ztext = np.require(self.array.data, dtype=np.float32, requirements=['F'])
4441
+ ztext = np.require(self.array.data.copy(), dtype=np.float32, requirements=['C'])
4442
+
4443
+ assert ztext.flags.c_contiguous, _('ztext is not C-contiguous')
4444
+
4441
4445
  ztext[self.array.mask] = self.array.min()
4442
4446
  self._array3d = WolfArray_plot3D(self._quads,
4443
4447
  self.dx, self.dy,
@@ -5018,11 +5022,16 @@ class WolfArray(Element_To_Draw, header_wolf):
5018
5022
  try:
5019
5023
  if geotr[5] <0.:
5020
5024
  self.origy = geotr[3]+geotr[5]*self.nby
5021
- self.array = np.transpose(np.flipud(np.ma.asarray(band.ReadAsArray())))
5025
+ tmp_array = np.transpose(np.flipud(band.ReadAsArray()))
5022
5026
  else:
5023
5027
  self.origy = geotr[3]
5024
- self.array = np.transpose(np.ma.asarray(band.ReadAsArray()))
5028
+ tmp_array = np.transpose(band.ReadAsArray())
5029
+
5030
+ self.array = np.ma.asarray(tmp_array.copy())
5031
+
5032
+ assert self.array.iscontiguous(), _('Array is not contiguous')
5025
5033
 
5034
+ del tmp_array
5026
5035
 
5027
5036
  if self.array.dtype == np.float64:
5028
5037
  self.wolftype = WOLF_ARRAY_FULL_DOUBLE
@@ -6544,7 +6553,7 @@ class WolfArray(Element_To_Draw, header_wolf):
6544
6553
  def read_all(self, which_band = None):
6545
6554
  """ Lecture d'un Wolf aray depuis le nom de fichier """
6546
6555
 
6547
- THRESHOLD = 20_000_000
6556
+ THRESHOLD = 100_000_000
6548
6557
 
6549
6558
  if not os.path.exists(self.filename):
6550
6559
  if self.wx_exists:
wolfhece/wolf_texture.py CHANGED
@@ -402,7 +402,7 @@ class Text_Image_Texture(genericImagetexture):
402
402
  self.oldview = [self.xmin, self.xmax, self.ymin, self.ymax, self.width, self.height]
403
403
 
404
404
  def findscale(self):
405
-
405
+
406
406
  self.proptext.setscale(self.mapviewer.sx, self.mapviewer.sy)
407
407
 
408
408
  def load(self, imageFile=""):
@@ -1779,8 +1779,9 @@ class OneWolfResult:
1779
1779
 
1780
1780
  self._current.mypal = curpal
1781
1781
  self._current.mypal.interval_cst = curpal.interval_cst
1782
- if VERSION_RGB==1 : self._current.rgb = curpal.get_rgba(self._current.array)
1783
- self._current.rgb[self._current.array.mask] = [1., 1., 1., 1.]
1782
+ if VERSION_RGB==1 :
1783
+ self._current.rgb = curpal.get_rgba(self._current.array)
1784
+ self._current.rgb[self._current.array.mask] = [1., 1., 1., 1.]
1784
1785
 
1785
1786
  if which == 'wd_u':
1786
1787
  self._view.pals = [bluepal,curpal]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wolfhece
3
- Version: 2.1.30
3
+ Version: 2.1.33
4
4
  Author-email: Pierre Archambeau <pierre.archambeau@uliege.be>
5
5
  License: AGPL-v3 License
6
6
  Project-URL: Homepage, https://uee.uliege.be/hece
@@ -10,7 +10,7 @@ wolfhece/PyDraw.py,sha256=rF_TaicOrLMk122Mflc82kyz0DoJ-ldWgeYrMkjNIOY,390213
10
10
  wolfhece/PyGui.py,sha256=8UWyaYwiHD9juDbPs__pmCXIDoM8r9_bGKLf29xVGZI,103140
11
11
  wolfhece/PyGuiHydrology.py,sha256=r8kcY2eGAQzSwVtLpyMUiBL5xBpMBsi7ovs0PgStGWw,14648
12
12
  wolfhece/PyHydrographs.py,sha256=GKK8U0byI45H9O_e4LAOOi7Aw0Tg7Q0Lx322stPg5IQ,3453
13
- wolfhece/PyPalette.py,sha256=-F3E2dyGNMHCZa3xTd_StNYOQZv9fPGO051Z0TtvEqo,25885
13
+ wolfhece/PyPalette.py,sha256=3NK2bvFNmBTjnghTEKMSVQdNRWW3CATMrIGA1DwaajU,25883
14
14
  wolfhece/PyParams.py,sha256=R3AWcb7Mhixwnw4iONSN4gk1DOXKcJR2lj7jaIml4B8,97085
15
15
  wolfhece/PyPictures.py,sha256=-mJB0JL2YYiEK3D7_ssDkvYiMWK4ve9kXhozQXNeSx8,2216
16
16
  wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
@@ -48,13 +48,13 @@ wolfhece/rain_SPWMI.py,sha256=YqsF-yFro3y_a6MfVRFfr-Rxi7NR1gl_i8VX7scmzes,13548
48
48
  wolfhece/test_Results2DGPU.py,sha256=NOJ_hFXrcLSQXS1dtsqXRQltqIZtDSHMz_EgAJ2_FHU,307
49
49
  wolfhece/textpillow.py,sha256=zEfLrKhfCDyMaVuQOUjHqz6MGKeQ4aewMxOsWi5-wKI,13832
50
50
  wolfhece/tools_mpl.py,sha256=q8Yc4aukPPiUcEzREvZRM_em67XqXaahdoaNt0DETfE,266
51
- wolfhece/wolf_array.py,sha256=lgo1SQaiEZe7yF1vUuH1SyKsK6lT2ccT0WM7cGTxhDg,355711
51
+ wolfhece/wolf_array.py,sha256=u-mgO65i-6Cv7ZyTwVehHeRV-j0AApeNa-UwSR82eEE,355967
52
52
  wolfhece/wolf_hist.py,sha256=JpRXvzJLUP-RkSkvth3DQWglgTMFI2ZEUDb4RYOfeeI,3284
53
- wolfhece/wolf_texture.py,sha256=llQ7aV8scWXIkhpri9XjaPejzoBJsGfsln2ZnlRbFkU,16270
53
+ wolfhece/wolf_texture.py,sha256=KAzrA86Sl2HSkATXKDG8AEL0rEL560XTAl_HZw7VBos,16278
54
54
  wolfhece/wolf_tiles.py,sha256=F2JsJHdAP8fIffNJdG_J26bonCIRtIwMmxKFqdSCRDA,10088
55
55
  wolfhece/wolf_vrt.py,sha256=un5CKzAUmzSsjLXK7YLnQEWz8FLoafXJs8oqUvS_-h0,10271
56
56
  wolfhece/wolf_zi_db.py,sha256=Ok0MxQYZMMLRJN1QY-HSplLhUzzb6gkXgBQ3ihhLQHk,12669
57
- wolfhece/wolfresults_2D.py,sha256=wF-wIyqpTrUJX_fT-QCVuNxLZCgUsqK9ptGz8izpyIQ,165590
57
+ wolfhece/wolfresults_2D.py,sha256=fhRRfz6Lb_lkr4YldLuCWS_bboljVfKS90pCI3ZArT0,165608
58
58
  wolfhece/xyz_file.py,sha256=aQOcTHkHRhXHxL_WxTHwzygp6e47San7SHSpxKQU0dw,5457
59
59
  wolfhece/acceptability/Parallels.py,sha256=wpCdwkqR6PAFeRkV5TvSSL33Vf368j-bvYcl7D1Y-sc,3695
60
60
  wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
@@ -72,7 +72,7 @@ wolfhece/apps/check_install.py,sha256=jrKR-njqnpIh6ZJqvP6KbDUPVCfwTNQj4glQhcyzs9
72
72
  wolfhece/apps/curvedigitizer.py,sha256=avWERHuVxPnJBOD_ibczwW_XG4vAenqWS8W1zjhBox8,4898
73
73
  wolfhece/apps/isocurrent.py,sha256=4XnNWPa8mYUK7V4zdDRFrHFIXNG2AN2og3TqWKKcqjY,3811
74
74
  wolfhece/apps/splashscreen.py,sha256=EjEjZGuWV-8ZfHhnFH4XLrrtB-YpzPDVhFzRrjgFUzI,2624
75
- wolfhece/apps/version.py,sha256=DOnhV0acM8wlohylXhs6wwbgGzeJWQwuSC3SgXqFsRg,388
75
+ wolfhece/apps/version.py,sha256=T0LmEbb20s-W-mCYSeft4TW97CGnPrEnRHM-RvHocZM,388
76
76
  wolfhece/apps/wolf.py,sha256=gqfm-ZaUJqNsfCzmdtemSeqLw-GVdSVix-evg5WArJI,293
77
77
  wolfhece/apps/wolf2D.py,sha256=gWD9ee2-1pw_nUxjgRaJMuSe4kUT-RWhOeoTt_Lh1mM,267
78
78
  wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
@@ -241,7 +241,7 @@ wolfhece/models/waterdepths.pal,sha256=8rcQfuZOeLKzYv5sARPkhpvZYc1OToj3ZukcbuRUg
241
241
  wolfhece/models/white_black.pal,sha256=BKjVN1kuk1OtJB9S3uM5fxteWbggI3Pb8p9WdDptT4c,51
242
242
  wolfhece/opengl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
243
  wolfhece/opengl/gl_utils.py,sha256=-eH2WAWdLFr6mzEwN8XdfJfM8U2rgvRryCAqjH-zeys,66136
244
- wolfhece/opengl/py3d.py,sha256=Ws2VM8TNHR4Tx_Ud14c38FEco3LZWevH7UvtSUt6osw,66451
244
+ wolfhece/opengl/py3d.py,sha256=oSxkGW3om3jHAy3C-4XQhpWicvkRBIHk26iiKsiZxR4,66623
245
245
  wolfhece/opengl/tile_packer.py,sha256=0B1-Q-Jm-lKIXrw2lFbrrVL9gbtbl50jeWl67ymYbsc,15841
246
246
  wolfhece/pythonfortran/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
247
  wolfhece/pythonfortran/example_makendarray.py,sha256=FNPp6lsU9Mv0O8VLN3JHWk5Qn1zZxUSCPeDyUI1-x48,2718
@@ -257,13 +257,13 @@ wolfhece/report/reporting.py,sha256=LrOUI7j1vPefsGhqag1f2KpKRXR-5cH7SyGIsf6nOG0,
257
257
  wolfhece/report/wolf_report.png,sha256=NoSV58LSwb-oxCcZScRiJno-kxDwRdm_bK-fiMsKJdA,592485
258
258
  wolfhece/scenario/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
259
  wolfhece/scenario/check_scenario.py,sha256=nFiCscEGHyz1YvjmZoKlYrfmW03-nLiDTDdRoeE6MUs,4619
260
- wolfhece/scenario/config_manager.py,sha256=r3E7ZyOewoB_0M-ox3rIZ3-cO_JIbE1zD4b87pPXn6c,77957
260
+ wolfhece/scenario/config_manager.py,sha256=OnQPPJwd70-N93gGGVwr16qAQZq1MPvWV2I9KV-lhkc,80113
261
261
  wolfhece/scenario/imposebc_void.py,sha256=pl7c99HQQMQT7i15fDlOOFYCdOtR5c_XIBOveOTOaLc,5273
262
262
  wolfhece/scenario/update_void.py,sha256=MmiDiwWHvuk0mpXOlMeB2ImY-d1Wi3Wfmg9hrDTAraE,7176
263
263
  wolfhece/shaders/fragment_shader_texture.glsl,sha256=w6h8d5mJqFaGbao0LGmjRcFFdcEQ3ICIl9JpuT71K5k,177
264
264
  wolfhece/shaders/geom_grid.glsl,sha256=7eAkutCrwoeJpIdF69Ar7K18YyClvVG8ArJJARcmC-Q,742
265
265
  wolfhece/shaders/quad_frag_shader.glsl,sha256=GYGg9q4vFXiMuLK-pxSLz7crAE3dvlzJ7-e7PMfwSq0,1227
266
- wolfhece/shaders/quad_geom_shader.glsl,sha256=VluEhUBzi5DlPFE2wWO4Om0N6NBc_DljkPygjZ-8Cbg,9283
266
+ wolfhece/shaders/quad_geom_shader.glsl,sha256=rgj86_Vwq4_mFhttTQhykcvHKYwxPfjGnPRZwxOuhRc,9324
267
267
  wolfhece/shaders/quadpos_frag_shader.glsl,sha256=0wwkMAg34VX2UrUsSp5lBcJ7x1cT03jZ6f31E2d43yo,152
268
268
  wolfhece/shaders/quadpos_geom_shader.glsl,sha256=3yoG50qKvNX1Gga8vNOX1OfVWTnXmbur--OmfQaqvNo,2272
269
269
  wolfhece/shaders/simple_fragment_shader.glsl,sha256=3CpRsdReYwHC-rM5YJLZJFHbUbfA-4jxiGX-AS34Gpo,173
@@ -280,8 +280,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=yGbU_JsF56jsmms0gh7mxa
280
280
  wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=wCxGRnE3kzEkWlWA6-3X8ADOFux_B0a5QWJ2GnXTgJw,4709
281
281
  wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
282
  wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
283
- wolfhece-2.1.30.dist-info/METADATA,sha256=3IcGhCz-MaGj4jP2HATNkudS-Ae869L61Ec7nyjt5rE,2356
284
- wolfhece-2.1.30.dist-info/WHEEL,sha256=rWxmBtp7hEUqVLOnTaDOPpR-cZpCDkzhhcBce-Zyd5k,91
285
- wolfhece-2.1.30.dist-info/entry_points.txt,sha256=MAG6NrF64fcxiVNb2g1JPYPGcn9C0HWtqqNurB83oX0,330
286
- wolfhece-2.1.30.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
287
- wolfhece-2.1.30.dist-info/RECORD,,
283
+ wolfhece-2.1.33.dist-info/METADATA,sha256=UyiiBEQYpkHue3QRTDuWbtuZBkMf5iS12_pM2oQe85E,2356
284
+ wolfhece-2.1.33.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
285
+ wolfhece-2.1.33.dist-info/entry_points.txt,sha256=MAG6NrF64fcxiVNb2g1JPYPGcn9C0HWtqqNurB83oX0,330
286
+ wolfhece-2.1.33.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
287
+ wolfhece-2.1.33.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.4)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5