lavavu-osmesa 1.8.80__cp310-cp310-manylinux_2_28_x86_64.whl → 1.8.83__cp310-cp310-manylinux_2_28_x86_64.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.
- lavavu/LavaVuPython.py +1 -0
- lavavu/_LavaVuPython.cpython-310-x86_64-linux-gnu.so +0 -0
- lavavu/html/webview.html +1 -1
- lavavu/lavavu.py +67 -51
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/METADATA +2 -2
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/RECORD +16 -16
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/WHEEL +1 -1
- lavavu_osmesa.libs/{libavcodec-22608acb.so.61.22.100 → libavcodec-c07e82e9.so.61.24.100} +0 -0
- lavavu_osmesa.libs/libavformat-2c4b075e.so.61.9.100 +0 -0
- lavavu_osmesa.libs/libavutil-1e63d46c.so.59.46.100 +0 -0
- lavavu_osmesa.libs/libswresample-0ba304d7.so.5.4.100 +0 -0
- lavavu_osmesa.libs/libswscale-4ff68837.so.8.9.101 +0 -0
- lavavu_osmesa.libs/libx264-6f5370e2.so.164 +0 -0
- lavavu_osmesa.libs/libavformat-110b7b98.so.61.9.100 +0 -0
- lavavu_osmesa.libs/libavutil-6f297d47.so.59.44.100 +0 -0
- lavavu_osmesa.libs/libswresample-5281a095.so.5.4.100 +0 -0
- lavavu_osmesa.libs/libswscale-a39dc465.so.8.6.100 +0 -0
- lavavu_osmesa.libs/libx264-3daadd71.so.164 +0 -0
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/LICENSE.md +0 -0
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/entry_points.txt +0 -0
- {lavavu_osmesa-1.8.80.dist-info → lavavu_osmesa-1.8.83.dist-info}/top_level.txt +0 -0
lavavu/LavaVuPython.py
CHANGED
@@ -481,6 +481,7 @@ class LavaVu(object):
|
|
481
481
|
web = _swig_new_instance_method(_LavaVuPython.LavaVu_web)
|
482
482
|
video = _swig_new_instance_method(_LavaVuPython.LavaVu_video)
|
483
483
|
encodeVideo = _swig_new_instance_method(_LavaVuPython.LavaVu_encodeVideo)
|
484
|
+
pauseVideo = _swig_new_instance_method(_LavaVuPython.LavaVu_pauseVideo)
|
484
485
|
defaultModel = _swig_new_instance_method(_LavaVuPython.LavaVu_defaultModel)
|
485
486
|
addColourMap = _swig_new_instance_method(_LavaVuPython.LavaVu_addColourMap)
|
486
487
|
updateColourMap = _swig_new_instance_method(_LavaVuPython.LavaVu_updateColourMap)
|
Binary file
|
lavavu/html/webview.html
CHANGED
@@ -27,7 +27,7 @@
|
|
27
27
|
|
28
28
|
<input id="fileinput" type="file" style="visibility:hidden" onchange="useFileInput(this)" />
|
29
29
|
|
30
|
-
<script async src="https://cdn.jsdelivr.net/gh/lavavu/lavavu.github.io@1.8.
|
30
|
+
<script async src="https://cdn.jsdelivr.net/gh/lavavu/lavavu.github.io@1.8.83/LavaVu-amalgamated.min.js"></script>
|
31
31
|
<!--script src="dat.gui.min.js"></script>
|
32
32
|
<script src="OK-min.js"></script>
|
33
33
|
|
lavavu/lavavu.py
CHANGED
@@ -172,7 +172,7 @@ def is_documented_by(original):
|
|
172
172
|
return target
|
173
173
|
return wrapper
|
174
174
|
|
175
|
-
def _brightness_contrast_saturation(target, brightness=
|
175
|
+
def _brightness_contrast_saturation(target, brightness=None, contrast=None, saturation=None, normalise=True):
|
176
176
|
"""
|
177
177
|
Set brightness, contrast and saturation in the range [0,1]
|
178
178
|
Zero is minimum level
|
@@ -192,10 +192,10 @@ def _brightness_contrast_saturation(target, brightness=0.5, contrast=0.5, satura
|
|
192
192
|
0 is greyscale, 0.5 is normal and 1.0 is maximum over-saturation
|
193
193
|
"""
|
194
194
|
#Brightness in shader is [-1,1] where 0 is default
|
195
|
-
target["brightness"] = brightness * 2.0 - 1.0
|
195
|
+
target["brightness"] = None if brightness is None else brightness * 2.0 - 1.0
|
196
196
|
#Contrast and saturation range from [0,2] where 1 is default
|
197
|
-
target["contrast"] = contrast * 2.0
|
198
|
-
target["saturation"] = saturation * 2.0
|
197
|
+
target["contrast"] = None if contrast is None else contrast * 2.0
|
198
|
+
target["saturation"] = None if saturation is None else saturation * 2.0
|
199
199
|
|
200
200
|
def grid2d(corners=((0.,1.), (1.,0.)), dims=[2,2]):
|
201
201
|
"""
|
@@ -1629,7 +1629,7 @@ class Object(dict):
|
|
1629
1629
|
self.parent.export_mesh(filepath, [self], rgba)
|
1630
1630
|
|
1631
1631
|
@is_documented_by(_brightness_contrast_saturation)
|
1632
|
-
def brightness_contrast_saturation(self, brightness=
|
1632
|
+
def brightness_contrast_saturation(self, brightness=None, contrast=None, saturation=None):
|
1633
1633
|
return _brightness_contrast_saturation(self)
|
1634
1634
|
|
1635
1635
|
#Wrapper dict+list of objects
|
@@ -4194,7 +4194,7 @@ class Viewer(dict):
|
|
4194
4194
|
|
4195
4195
|
try:
|
4196
4196
|
fn = self.app.video(filename, fps, resolution[0], resolution[1], start, end, quality, **kwargs)
|
4197
|
-
player(fn)
|
4197
|
+
player(fn, **kwargs)
|
4198
4198
|
except (Exception) as e:
|
4199
4199
|
print("Video output error: " + str(e))
|
4200
4200
|
pass
|
@@ -4402,7 +4402,7 @@ class Viewer(dict):
|
|
4402
4402
|
vdat = {}
|
4403
4403
|
if len(self.state["views"]) and self.state["views"][0]:
|
4404
4404
|
def copyview(dst, src):
|
4405
|
-
for key in ["translate", "rotate", "xyzrotate", "fov"]:
|
4405
|
+
for key in ["translate", "rotate", "xyzrotate", "fov", "focus"]:
|
4406
4406
|
if key in src:
|
4407
4407
|
dst[key] = copy.copy(src[key])
|
4408
4408
|
#Round down arrays to max 3 decimal places
|
@@ -4742,7 +4742,7 @@ class Viewer(dict):
|
|
4742
4742
|
convert.export_any(filepath, objects)
|
4743
4743
|
|
4744
4744
|
@is_documented_by(_brightness_contrast_saturation)
|
4745
|
-
def brightness_contrast_saturation(self, brightness=
|
4745
|
+
def brightness_contrast_saturation(self, brightness=None, contrast=None, saturation=None):
|
4746
4746
|
return _brightness_contrast_saturation(self, brightness, contrast, saturation)
|
4747
4747
|
|
4748
4748
|
def set_properties(self, objects=None, **kwargs):
|
@@ -5232,7 +5232,7 @@ class DrawData(object):
|
|
5232
5232
|
renderlist = [geomnames[value] for value in geomtypes if value == self.data.type]
|
5233
5233
|
return ' '.join(['DrawData("' + r + '")' for r in renderlist]) + ' ==> ' + str(self.available)
|
5234
5234
|
|
5235
|
-
def player(filename,
|
5235
|
+
def player(filename, params="controls autoplay loop", **kwargs):
|
5236
5236
|
"""
|
5237
5237
|
Shows a video inline within an ipython notebook.
|
5238
5238
|
If IPython is not running, just returns
|
@@ -5241,55 +5241,62 @@ def player(filename, width=None, height=None, params="", nocache=True):
|
|
5241
5241
|
----------
|
5242
5242
|
filename : str
|
5243
5243
|
Path and name of the file to play
|
5244
|
-
width : int
|
5245
|
-
Fixed width of player window, otherwise will use video resolution
|
5246
|
-
height : int
|
5247
|
-
Fixed height of player window, otherwise will use video resolution
|
5248
5244
|
params : str
|
5249
|
-
|
5250
|
-
|
5251
|
-
|
5245
|
+
Additional html attributes for the video control, see:
|
5246
|
+
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
|
5247
|
+
**kwargs :
|
5248
|
+
width=W,height=H will set fixed size of player window
|
5249
|
+
See further player arguments at
|
5250
|
+
https://ipython.readthedocs.io/en/latest/api/generated/IPython.display.html#IPython.display.Video
|
5252
5251
|
"""
|
5253
5252
|
|
5254
5253
|
if is_notebook():
|
5255
|
-
from IPython.display import display,HTML
|
5256
|
-
|
5257
|
-
|
5258
|
-
|
5259
|
-
|
5260
|
-
|
5261
|
-
|
5262
|
-
|
5263
|
-
|
5264
|
-
|
5265
|
-
|
5266
|
-
|
5267
|
-
|
5268
|
-
|
5269
|
-
|
5270
|
-
|
5271
|
-
"""
|
5272
|
-
#Jupyterlab adds it's own timestamp but notebook doesn't
|
5273
|
-
#don't know a way to detect jupyterlab, so provide source url with and without
|
5274
|
-
#Browser should load the first working url
|
5275
|
-
|
5276
|
-
#Get path relative to cwd
|
5277
|
-
#(this works in notebook/lab but not voila)
|
5278
|
-
#import pathlib
|
5279
|
-
#path = pathlib.Path(filename)
|
5280
|
-
#filename = str(path.relative_to(os.getcwd()))
|
5281
|
-
|
5282
|
-
global server_ports
|
5254
|
+
from IPython.display import display,HTML,Video,Javascript
|
5255
|
+
import uuid
|
5256
|
+
vid = 'video_' + str(uuid.uuid4())[:8]
|
5257
|
+
|
5258
|
+
'''
|
5259
|
+
def get_fn(filename):
|
5260
|
+
import os
|
5261
|
+
#This is unreliable, path incorrect on NCI
|
5262
|
+
nbpath = os.getenv('JPY_SESSION_NAME')
|
5263
|
+
if nbpath is not None:
|
5264
|
+
import os.path
|
5265
|
+
relpath = os.path.relpath(os.getcwd(), start=os.path.dirname(nbpath))
|
5266
|
+
return relpath + '/' + filename
|
5267
|
+
return filename
|
5268
|
+
''';
|
5269
|
+
|
5283
5270
|
import uuid
|
5284
5271
|
uid = uuid.uuid1()
|
5285
|
-
|
5286
|
-
|
5287
|
-
|
5288
|
-
|
5289
|
-
html = HTML(html.format(params=extra_params, fn1=filename_ts, fn2=filename, port=server_ports[-1] if len(server_ports) else 8080))
|
5290
|
-
display(html)
|
5272
|
+
|
5273
|
+
#Embed player
|
5274
|
+
display(Video(url=filename, html_attributes=f"id='{vid}' " + params, **kwargs))
|
5275
|
+
|
5291
5276
|
#Add download link
|
5292
|
-
display(HTML('<a href="{
|
5277
|
+
display(HTML(f'<a id="link_{vid}" href="{filename}" download>Download Video</a>'))
|
5278
|
+
|
5279
|
+
# Fallback - replace url on gadi and similar jupyterhub installs with
|
5280
|
+
# fixed working directory that doesn't match notebook dir
|
5281
|
+
# check the video tag url and remove subpath on 404 error
|
5282
|
+
display(Javascript(f"""
|
5283
|
+
let el = document.getElementById('{vid}');
|
5284
|
+
let url = el.src;
|
5285
|
+
fetch(url, {{method: 'HEAD'}}).then(response=>{{
|
5286
|
+
if(response.status == 404) {{
|
5287
|
+
console.log("Bad video url: " + url);
|
5288
|
+
let toppath = "/files/home/"
|
5289
|
+
let baseurl = url.substring(0, url.indexOf(toppath)+toppath.length);
|
5290
|
+
let endurl = url.substring(url.indexOf("{filename}"));
|
5291
|
+
let fixed = baseurl + endurl;
|
5292
|
+
console.log("Replaced video url: " + fixed);
|
5293
|
+
el.src = fixed;
|
5294
|
+
//Also fix download link
|
5295
|
+
document.getElementById('link_{vid}').href = fixed;
|
5296
|
+
}}
|
5297
|
+
}});
|
5298
|
+
"""))
|
5299
|
+
|
5293
5300
|
|
5294
5301
|
#Class for managing video animation recording
|
5295
5302
|
class Video(object):
|
@@ -5360,6 +5367,15 @@ class Video(object):
|
|
5360
5367
|
for f in glob.glob(self.filename + "/frame_*.jpg"):
|
5361
5368
|
os.remove(f)
|
5362
5369
|
|
5370
|
+
def pause(self):
|
5371
|
+
"""
|
5372
|
+
Pause/resume recording, no rendered frames will be added to the video while paused
|
5373
|
+
"""
|
5374
|
+
if self.encoder:
|
5375
|
+
self.encoder.render = not self.encoder.render
|
5376
|
+
else:
|
5377
|
+
self.viewer.app.pauseVideo()
|
5378
|
+
|
5363
5379
|
def stop(self):
|
5364
5380
|
"""
|
5365
5381
|
Stop recording, final frames will be written and file closed, ready to play.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lavavu-osmesa
|
3
|
-
Version: 1.8.
|
3
|
+
Version: 1.8.83
|
4
4
|
Summary: Python interface to LavaVu OpenGL 3D scientific visualisation utilities
|
5
5
|
Author-email: Owen Kaluza <owen@kaluza.id.au>
|
6
6
|
License: ### Licensing
|
@@ -221,7 +221,7 @@ Requires-Dist: jupyter-server-proxy
|
|
221
221
|
[](https://github.com/lavavu/LavaVu/actions?query=workflow:Test)
|
222
222
|
[](https://github.com/lavavu/LavaVu/actions?query=workflow:Deploy)
|
223
223
|
[](https://zenodo.org/badge/latestdoi/45163055)
|
224
|
-
[](https://mybinder.org/v2/gh/lavavu/LavaVu/1.8.
|
224
|
+
[](https://mybinder.org/v2/gh/lavavu/LavaVu/1.8.83)
|
225
225
|
|
226
226
|
A scientific visualisation tool with a python interface for fast and flexible visual analysis.
|
227
227
|
|
@@ -1,33 +1,39 @@
|
|
1
1
|
lavavu_osmesa.libs/libglapi-d9260dde.so.0.0.0,sha256=lk2-KJ-TfqKogN82K9yu6G_StS6MtPDFNP7dN1CZSjo,247921
|
2
2
|
lavavu_osmesa.libs/libdrm-b0291a67.so.2.4.0,sha256=K48ZAlNAuvSdX7i2toETxCm6886w4E17JmP2c8RM2-0,96417
|
3
|
+
lavavu_osmesa.libs/libavformat-2c4b075e.so.61.9.100,sha256=FscWR6X-KZVOGGZHqilkHwwOUdlxYtPztWaIfmLP5Yc,2702745
|
4
|
+
lavavu_osmesa.libs/libswscale-4ff68837.so.8.9.101,sha256=QluomWhZTk8Fa6lREeOBDJ8N5ztrfAk07Du3TF4cWUM,648705
|
3
5
|
lavavu_osmesa.libs/libtiff-97fb0e7a.so.5.3.0,sha256=ReUrhN0yHYGg-Fws0_oHS7soNRaqYFAMCqpS5FXXbMU,517801
|
4
|
-
lavavu_osmesa.libs/libx264-
|
5
|
-
lavavu_osmesa.libs/libswresample-5281a095.so.5.4.100,sha256=FCwCF-UT7a0MXZ6tj0K5edvk661ZJckVdu93l7mZfnY,128265
|
6
|
+
lavavu_osmesa.libs/libx264-6f5370e2.so.164,sha256=eB4ZQMvXUl_lla5tVyk8Xg8MVldtlDovZOpc8g0WhlE,2435841
|
6
7
|
lavavu_osmesa.libs/libzstd-76b78bac.so.1.4.4,sha256=F2-A6yQ3AA2N0vHZe-81OfEUOcwgjjWiOnYAxk2Kflc,686073
|
8
|
+
lavavu_osmesa.libs/libavutil-1e63d46c.so.59.46.100,sha256=khP7ezU-qUnsHWF-UAqWkyVrR4S6Aq3Gyod4UlvNMV8,1009281
|
7
9
|
lavavu_osmesa.libs/libjpeg-da649728.so.62.2.0,sha256=IoO1YzjSjixVQSs5SiWK95E-RREenSFc2B97tb-x_5E,437961
|
8
10
|
lavavu_osmesa.libs/libtinfo-3a2cb85b.so.6.1,sha256=6Co83bxdB4J-rBU5l0p_7HpGlU46RG2EDnf-LpF5kBY,194041
|
9
11
|
lavavu_osmesa.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
|
10
|
-
lavavu_osmesa.libs/libavformat-110b7b98.so.61.9.100,sha256=yswy-iJ55yHUy0hnrIzJP4NO5ggKdB8hmWPTwIOKpYE,2690465
|
11
12
|
lavavu_osmesa.libs/libOSMesa-25f49adf.so.8.0.0,sha256=_WFDCZkS9KhK_WNSRQUG-CcR4NgKRfGtGaSkw--0EKw,12995657
|
12
|
-
lavavu_osmesa.libs/libavcodec-22608acb.so.61.22.100,sha256=U1ZRhRsDOEHEyqW5ai80bsCIaJGf5GSlzNy0NgvltaQ,14755761
|
13
13
|
lavavu_osmesa.libs/libbz2-e34b29ae.so.1.0.6,sha256=t0Rx5MGhoqFd8hOzCgew5TwGvZFpy_XTk-dae2FXAEs,79145
|
14
14
|
lavavu_osmesa.libs/libLLVM-17-daa109ce.so,sha256=0F8UnMl03hrXBMto2ewBZRdnfzIbg6qvo-qVBIWY7H8,120778961
|
15
15
|
lavavu_osmesa.libs/libjbig-2504a0c3.so.2.1,sha256=VejIx8sDX3xfCuJkrk9HEyWBYjZbUiTyIRuoPqT-ibE,54265
|
16
|
+
lavavu_osmesa.libs/libswresample-0ba304d7.so.5.4.100,sha256=i6FYI2DuKjgjVxmbqNm2mXewyRNM-a6WSzgGJwFKuZc,128265
|
16
17
|
lavavu_osmesa.libs/libselinux-64a010fa.so.1,sha256=dNJwuKqYp8fwkmrQ9hom3hVQ-lYUkNxxHb4vmrk8zmE,195097
|
17
18
|
lavavu_osmesa.libs/libffi-3a37023a.so.6.0.2,sha256=Q1Rq1XplFBXNFHvg92SNmTgQ0T6E9wmcqZcgOZ7DgLE,42489
|
18
|
-
lavavu_osmesa.libs/
|
19
|
-
lavavu_osmesa
|
19
|
+
lavavu_osmesa.libs/libavcodec-c07e82e9.so.61.24.100,sha256=xMKCq1bFKmc36ShXE1AXmXVVJbxHjQiZo1O-nmDPwvs,15042481
|
20
|
+
lavavu_osmesa-1.8.83.dist-info/top_level.txt,sha256=JptS0k1nlBumjLs_0hITr3_XUJhxqvKBXD2jGho3E3A,7
|
21
|
+
lavavu_osmesa-1.8.83.dist-info/RECORD,,
|
22
|
+
lavavu_osmesa-1.8.83.dist-info/entry_points.txt,sha256=LC2qXR6EMe45Cb7zGAF99R9HFrAECP6Qkp_YuG6HZB0,44
|
23
|
+
lavavu_osmesa-1.8.83.dist-info/LICENSE.md,sha256=EhfNgC6BYh5gDEaq4tcrN3S0wbO4CtJO46botJnCF8c,8603
|
24
|
+
lavavu_osmesa-1.8.83.dist-info/METADATA,sha256=XMUGgi2BeXUbsU5Ju-agHXvzXiFSxVT_SIUqJ__UN3M,18244
|
25
|
+
lavavu_osmesa-1.8.83.dist-info/WHEEL,sha256=pNQYdFK8JbZcKxD8rYioE4NVlKyArF8gQtbAZyXo2_w,113
|
20
26
|
lavavu/server.py,sha256=L-_yPCbNfwYxJCPjDQtr_lxPnDp4oMNVFyxXhBERYrQ,12468
|
21
|
-
lavavu/LavaVuPython.py,sha256=
|
27
|
+
lavavu/LavaVuPython.py,sha256=ixhceiAr0gGGfCe3d2cY0IIgS4hbgoYJGa_RfgAmmrU,33207
|
22
28
|
lavavu/amalgamate.py,sha256=Xloq1IZ4VUvYiROzQtwKcQIWC65c7EZrdiGVhZdolL8,586
|
23
|
-
lavavu/_LavaVuPython.cpython-310-x86_64-linux-gnu.so,sha256=
|
29
|
+
lavavu/_LavaVuPython.cpython-310-x86_64-linux-gnu.so,sha256=SrhwaufnLIzk0E24DL5GsAwWtjl0cDRbxtxVnmYqJPI,76661833
|
24
30
|
lavavu/__init__.py,sha256=JroZQiUbuVN7ifixk2zNDGlyLGaM8bqfRbw4D_F9qIQ,191
|
25
31
|
lavavu/vutils.py,sha256=6Vm_xl1bp9mWlfk7jgLDwbRw-tdE_oxin77YkLel3_4,5437
|
26
32
|
lavavu/aserver.py,sha256=SfFvLeDTcx1XtS8fY_HIrDmh3q9HicCBRSAriY5yyOE,12003
|
27
33
|
lavavu/points.py,sha256=jRRtA6CrcA46Y2jUJmkxnIiVoMC5a14xEd_ojhmjhz4,5871
|
28
34
|
lavavu/tracers.py,sha256=0dB6v9Jg5G-IeZxiVFvbPoTycGvyAQBtgyEAZUmq4XU,4257
|
29
35
|
lavavu/dict.json,sha256=lsZEHc7Bb6_lt7tkSBQMgkq7AEn_2hnhWzzdokmvIY8,52729
|
30
|
-
lavavu/lavavu.py,sha256=
|
36
|
+
lavavu/lavavu.py,sha256=wBjlfDY-MTolGCigPS1bG3Z0ZEJMQjI5A8I2PtkRQS8,208226
|
31
37
|
lavavu/__main__.py,sha256=EbDetijCjyoiNxmExqnDGoRVs996tSVave5DML9zuMY,235
|
32
38
|
lavavu/font.bin,sha256=fvi5zkvmq6gh9v3jXedBVuxNJWKmHtbjECzv6eT9wb4,225360
|
33
39
|
lavavu/control.py,sha256=eNocZPc-2Dz-nSty_KRz_9RzLvbU0clJGuAV3qnzxbU,65841
|
@@ -51,7 +57,7 @@ lavavu/html/server.js,sha256=b5eNlWWbiEk90n3WARJ1Mh7lmfHM0pOtZfrrmM-wfyc,7099
|
|
51
57
|
lavavu/html/baseviewer.js,sha256=u3UhC1At6rMBKmcQ7d2DXTRxQ20wsQkc4lqA-7sL7i4,9567
|
52
58
|
lavavu/html/stats.min.js,sha256=iiwrLW4SUBhrzWrfW2VZP_9mowHX-Ks1EKORFv4EHdE,1965
|
53
59
|
lavavu/html/LavaVu-amalgamated.css,sha256=iE2xrxFcwmY0AcASrXxNa_RpvFEbS_YO4H5OILbPteE,8640
|
54
|
-
lavavu/html/webview.html,sha256=
|
60
|
+
lavavu/html/webview.html,sha256=_kNxQCpgMOijm1yV66Wua3_Tu6txvaUVyCllKIaITds,1522
|
55
61
|
lavavu/shaders/default.frag,sha256=xCkYz8QriRlnAr-NtenZSIWI_liSxv9jz3Lp5immK9k,258
|
56
62
|
lavavu/shaders/lineShader.frag,sha256=aCmOWC20fHinR32p6LZPdCZP6abn-K1V2slbJ_5NoVA,945
|
57
63
|
lavavu/shaders/volumeShader.vert,sha256=uGdQjGqi7V5kE6V7nxymfugtU4cbf6u570xBy13RgmY,78
|
@@ -64,9 +70,3 @@ lavavu/shaders/fontShader.frag,sha256=DXAzO7kS36TBzYMJW0XqFiQQTTc4jFedGiUkLjelYK
|
|
64
70
|
lavavu/shaders/triShader.vert,sha256=pJXftq7IiqiGe7NTMmuBUMDs4OZc9TD8lNJ4q-8B57Q,1120
|
65
71
|
lavavu/shaders/lineShader.vert,sha256=6kJQcfu3eqaj910_KdaklVRvYxNbeu0ZbpDEOxRVde0,522
|
66
72
|
lavavu/shaders/pointShader.frag,sha256=T1PA9Z6FiE66rS2sAmmFIbYM2VqEkLBycxV-sx3nACY,3384
|
67
|
-
lavavu_osmesa-1.8.80.dist-info/top_level.txt,sha256=JptS0k1nlBumjLs_0hITr3_XUJhxqvKBXD2jGho3E3A,7
|
68
|
-
lavavu_osmesa-1.8.80.dist-info/RECORD,,
|
69
|
-
lavavu_osmesa-1.8.80.dist-info/entry_points.txt,sha256=LC2qXR6EMe45Cb7zGAF99R9HFrAECP6Qkp_YuG6HZB0,44
|
70
|
-
lavavu_osmesa-1.8.80.dist-info/LICENSE.md,sha256=EhfNgC6BYh5gDEaq4tcrN3S0wbO4CtJO46botJnCF8c,8603
|
71
|
-
lavavu_osmesa-1.8.80.dist-info/METADATA,sha256=-xcSiM2QkPrfXALEOg2Rp9ENBDVQNdJbuCSBpLAgBq8,18244
|
72
|
-
lavavu_osmesa-1.8.80.dist-info/WHEEL,sha256=0zH8SjPutgxRs06WMHDxmBnwy9W9FEENPDhTcOCqmGo,113
|
index daaeaef..2a8ea15 100755
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|