lavavu-osmesa 1.8.62__cp311-cp311-manylinux_2_28_x86_64.whl → 1.8.76__cp311-cp311-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.
Files changed (32) hide show
  1. lavavu/LavaVuPython.py +1 -1
  2. lavavu/_LavaVuPython.cpython-311-x86_64-linux-gnu.so +0 -0
  3. lavavu/aserver.py +5 -3
  4. lavavu/control.py +7 -0
  5. lavavu/convert.py +2 -2
  6. lavavu/html/drawbox.js +9 -0
  7. lavavu/html/emscripten-template.js +1 -1
  8. lavavu/html/menu.js +1 -0
  9. lavavu/html/webview.html +1 -1
  10. lavavu/lavavu.py +119 -6
  11. lavavu/vutils.py +9 -11
  12. lavavu_osmesa-1.8.76.dist-info/METADATA +318 -0
  13. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.76.dist-info}/RECORD +52 -53
  14. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.76.dist-info}/WHEEL +1 -1
  15. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.76.dist-info}/entry_points.txt +0 -1
  16. lavavu_osmesa.libs/{libLLVM-16-8078311d.so → libLLVM-17-67b6bd0c.so} +0 -0
  17. lavavu_osmesa.libs/{libOSMesa-52131ed3.so.8.0.0 → libOSMesa-25f49adf.so.8.0.0} +0 -0
  18. lavavu_osmesa.libs/{libavcodec-fe4b6e3a.so.60.40.100 → libavcodec-4cf69f6b.so.61.11.100} +0 -0
  19. lavavu_osmesa.libs/libavformat-92c3debc.so.61.5.101 +0 -0
  20. lavavu_osmesa.libs/libavutil-928f2adb.so.59.35.100 +0 -0
  21. lavavu_osmesa.libs/{libglapi-547e8b87.so.0.0.0 → libglapi-d9260dde.so.0.0.0} +0 -0
  22. lavavu_osmesa.libs/libswresample-c9f3a84c.so.5.2.100 +0 -0
  23. lavavu_osmesa.libs/libswscale-12194c6c.so.8.2.100 +0 -0
  24. lavavu_osmesa.libs/{libtiff-c437d1e6.so.5.3.0 → libtiff-97fb0e7a.so.5.3.0} +0 -0
  25. lavavu_osmesa-1.8.62.dist-info/METADATA +0 -33
  26. lavavu_osmesa.libs/libavformat-e549c9d6.so.60.21.101 +0 -0
  27. lavavu_osmesa.libs/libavutil-501cb797.so.58.39.100 +0 -0
  28. lavavu_osmesa.libs/libmvec-2-fc8a8ddc.28.so +0 -0
  29. lavavu_osmesa.libs/libswresample-3637ead4.so.4.13.100 +0 -0
  30. lavavu_osmesa.libs/libswscale-b3ad9321.so.7.6.100 +0 -0
  31. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.76.dist-info}/LICENSE.md +0 -0
  32. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.76.dist-info}/top_level.txt +0 -0
lavavu/LavaVuPython.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # This file was automatically generated by SWIG (https://www.swig.org).
2
- # Version 4.1.0
2
+ # Version 4.2.0
3
3
  #
4
4
  # Do not make changes to this file unless you know what you are doing - modify
5
5
  # the SWIG interface file instead.
lavavu/aserver.py CHANGED
@@ -11,6 +11,7 @@ import socket
11
11
  import asyncio
12
12
  import aiohttp
13
13
  from aiohttp import web
14
+ import logging
14
15
 
15
16
  from urllib.parse import unquote
16
17
 
@@ -284,6 +285,10 @@ async def _serve(viewer, sock):
284
285
  try:
285
286
  #Create web application manager
286
287
  app = web.Application()
288
+ #https://github.com/aio-libs/aiohttp/issues/3287
289
+ #app.logger.manager.disable = 100
290
+ app.logger.setLevel(logging.CRITICAL)
291
+
287
292
  #Store viewer
288
293
  app["viewer"] = viewer
289
294
  #Add routes
@@ -348,9 +353,6 @@ if __name__ == '__main__':
348
353
  import asyncio
349
354
  lv = lavavu.Viewer()
350
355
 
351
- import logging
352
- logging.getLogger('aiohttp.server').setLevel(logging.CRITICAL)
353
-
354
356
  lv.browser()
355
357
  lv.app.loop()
356
358
  #lv.interactive()
lavavu/control.py CHANGED
@@ -220,6 +220,13 @@ def _connectcode(target):
220
220
  else:
221
221
  return ""
222
222
 
223
+ def _emscriptencode(menu=False, lighttheme=True):
224
+ """
225
+ Returns WebGL base code for an interactive visualisation window
226
+ """
227
+ jslibs = [[], ['emscripten.js', 'LavaVu.js']]
228
+ return _webglcode('', ['emscripten.css'], jslibs, menu=menu, lighttheme=lighttheme)
229
+
223
230
  def _getcss(files=["styles.css"]):
224
231
  #Load stylesheets to inline tag
225
232
  return _filestohtml(files, tag="style")
lavavu/convert.py CHANGED
@@ -110,10 +110,10 @@ def points_to_volume_histogram(verts, weights, res=8, normed=True, clamp=None, b
110
110
 
111
111
  #H, edges = numpy.histogramdd(verts, bins=RES)
112
112
  if boundingbox is None:
113
- H, edges = numpy.histogramdd(verts, weights=weights, bins=RES, normed=normed) #density=True for newer numpy
113
+ H, edges = numpy.histogramdd(verts, weights=weights, bins=RES, density=normed) #density=True for newer numpy
114
114
  else:
115
115
  rg = ((vmin[0], vmax[0]), (vmin[1], vmax[1]), (vmin[2], vmax[2])) #provide bounding box as range
116
- H, edges = numpy.histogramdd(verts, weights=weights, bins=RES, range=rg, normed=normed) #density=True for newer numpy
116
+ H, edges = numpy.histogramdd(verts, weights=weights, bins=RES, range=rg, density=normed) #density=True for newer numpy
117
117
 
118
118
  #Reverse ordering X,Y,Z to Z,Y,X for volume data
119
119
  values = H.transpose()
lavavu/html/drawbox.js CHANGED
@@ -190,6 +190,14 @@ function canvasBoxMouseMove(event, mouse) {
190
190
 
191
191
  mouse.element.viewer.draw();
192
192
 
193
+ //Instant updates
194
+ if (mouse.element.viewer.alwaysdraw) {
195
+ if (mouse.element.viewer.rotating)
196
+ mouse.element.viewer.command('' + mouse.element.viewer.getRotationString());
197
+ else
198
+ mouse.element.viewer.command('' + mouse.element.viewer.getTranslationString());
199
+ }
200
+
193
201
  return false;
194
202
  }
195
203
 
@@ -422,6 +430,7 @@ function BoxViewer(canvas) {
422
430
 
423
431
  //Non-persistant settings
424
432
  this.mode = 'Rotate';
433
+ this.alwaysdraw = false;
425
434
  if (!this.gl) return;
426
435
 
427
436
  //Create the renderers
@@ -67,7 +67,7 @@ var Module = {
67
67
  },
68
68
  locateFile: function(path, prefix) {
69
69
  // Source from github by default
70
- if (path.endsWith("LavaVu.wasm") || path.endsWith("LavaVu.data")) return "https://cdn.jsdelivr.net/gh/lavavu/lavavu.github.io@LAVAVU_VERSION/" + path;
70
+ //if (path.endsWith("LavaVu.wasm") || path.endsWith("LavaVu.data")) return "https://cdn.jsdelivr.net/gh/lavavu/lavavu.github.io@LAVAVU_VERSION/" + path;
71
71
  // otherwise, use the default, the prefix (JS file's dir) + the path
72
72
  return prefix + path;
73
73
  },
lavavu/html/menu.js CHANGED
@@ -320,6 +320,7 @@ function createMenu(viewer, onchange, webglmode, global) {
320
320
  gui.add({"Export GLDB" : function() {window.commands.push('export');}}, 'Export GLDB');
321
321
  } else if (viewer.canvas) {
322
322
  //Server render
323
+ gui.add(viewer, "alwaysdraw");
323
324
  var url = viewer.canvas.imgtarget.baseurl;
324
325
  if (url)
325
326
  gui.add({"Popup Viewer" : function() {window.open(url, "LavaVu", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=1024,height=768");}}, 'Popup Viewer');
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.62/LavaVu-amalgamated.min.js"></script>
30
+ <script async src="https://cdn.jsdelivr.net/gh/lavavu/lavavu.github.io@1.8.76/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
@@ -166,6 +166,37 @@ def _convert(data, dtype=None):
166
166
 
167
167
  return data
168
168
 
169
+ def is_documented_by(original):
170
+ def wrapper(target):
171
+ target.__doc__ = original.__doc__
172
+ return target
173
+ return wrapper
174
+
175
+ def _brightness_contrast_saturation(target, brightness=0.5, contrast=0.5, saturation=0.5):
176
+ """
177
+ Set brightness, contrast and saturation in the range [0,1]
178
+ Zero is minimum level
179
+ 0.5 is default, normal setting
180
+ 1 is maximum level
181
+
182
+ Parameters
183
+ ----------
184
+ brightness : float
185
+ Brightness level from 0 to 1, converts to lavavu brightness in range [-1,1]
186
+ 0 is full black, 0.5 is normal and 1.0 is full white
187
+ contrast : float
188
+ Contrast level from 0 to 1, converts to lavavu contrast in range [0,2]
189
+ 0 is grey, 0.5 is normal and 1.0 is maximum contrast
190
+ saturation : float
191
+ Saturation level from 0 to 1, converts to lavavu saturation in range [0,2]
192
+ 0 is greyscale, 0.5 is normal and 1.0 is maximum over-saturation
193
+ """
194
+ #Brightness in shader is [-1,1] where 0 is default
195
+ target["brightness"] = brightness * 2.0 - 1.0
196
+ #Contrast and saturation range from [0,2] where 1 is default
197
+ target["contrast"] = contrast * 2.0
198
+ target["saturation"] = saturation * 2.0
199
+
169
200
  def grid2d(corners=((0.,1.), (1.,0.)), dims=[2,2]):
170
201
  """
171
202
  Generate a 2d grid of vertices
@@ -1102,7 +1133,7 @@ class Object(dict):
1102
1133
 
1103
1134
  self._loadScalar(data, LavaVuPython.lucLuminanceData, width, height, depth)
1104
1135
 
1105
- def texture(self, data=None, flip=True, filter=2, bgr=False):
1136
+ def texture(self, data=None, flip=True, filter=2, bgr=False, label=""):
1106
1137
  """
1107
1138
  Load or clear texture data for object
1108
1139
 
@@ -1116,6 +1147,10 @@ class Object(dict):
1116
1147
  either (height, width, channels) for RGB(A) image
1117
1148
  or (height, width) for single channel grayscale image
1118
1149
  Pass a string to load a texture from given filename
1150
+ label : string
1151
+ Optional label to load a custom texture by name of uniform used
1152
+ If provided, will attempt to find the texture by this label and replace its data
1153
+ If not provided, will use the default/primary texture for the object
1119
1154
  flip : boolean
1120
1155
  flip the texture vertically after loading
1121
1156
  (default is enabled as usually required for OpenGL but can be disabled)
@@ -1129,7 +1164,7 @@ class Object(dict):
1129
1164
  self.parent.app.clearTexture(self.ref)
1130
1165
  return
1131
1166
  if isinstance(data, str):
1132
- self.parent.app.setTexture(self.ref, data, flip, filter, bgr)
1167
+ self.parent.app.setTexture(self.ref, data, flip, filter, bgr, label)
1133
1168
  return
1134
1169
 
1135
1170
  data = _convert(data)
@@ -1145,9 +1180,9 @@ class Object(dict):
1145
1180
  if data.dtype == numpy.float32:
1146
1181
  data = _convert(data, numpy.uint8)
1147
1182
  if data.dtype == numpy.uint32:
1148
- self.parent.app.textureUInt(self.ref, data.ravel(), width, height, channels, flip, filter, bgr)
1183
+ self.parent.app.textureUInt(self.ref, data.ravel(), width, height, channels, flip, filter, bgr, label)
1149
1184
  elif data.dtype == numpy.uint8:
1150
- self.parent.app.textureUChar(self.ref, data.ravel(), width, height, channels, flip, filter, bgr)
1185
+ self.parent.app.textureUChar(self.ref, data.ravel(), width, height, channels, flip, filter, bgr, label)
1151
1186
 
1152
1187
  def labels(self, data):
1153
1188
  """
@@ -1593,6 +1628,10 @@ class Object(dict):
1593
1628
  """
1594
1629
  self.parent.export_mesh(filepath, [self], rgba)
1595
1630
 
1631
+ @is_documented_by(_brightness_contrast_saturation)
1632
+ def brightness_contrast_saturation(self, brightness=0, contrast=0, saturation=0):
1633
+ return _brightness_contrast_saturation(self)
1634
+
1596
1635
  #Wrapper dict+list of objects
1597
1636
  class _Objects(dict):
1598
1637
  """
@@ -1901,7 +1940,7 @@ class ColourMap(dict):
1901
1940
  Convert to greyscale
1902
1941
  """
1903
1942
  if data is not None:
1904
- if isinstance(data, str) and re.match('^[\w_]+$', data) is not None:
1943
+ if isinstance(data, str) and re.match(r'^[\w_]+$', data) is not None:
1905
1944
  #Single word of alphanumeric characters, if not a built-in map, try matplotlib
1906
1945
  if data not in self.parent.defaultcolourmaps():
1907
1946
  newdata = matplotlib_colourmap(data)
@@ -3899,6 +3938,7 @@ class Viewer(dict):
3899
3938
  if not is_notebook():
3900
3939
  #Open the file in a new browser window
3901
3940
  import webbrowser
3941
+ #TODO: this url doesn't work
3902
3942
  webbrowser.open("/webview.html", new=1, autoraise=True)
3903
3943
  else:
3904
3944
  from IPython.display import display,HTML,IFrame
@@ -3916,6 +3956,26 @@ class Viewer(dict):
3916
3956
  </div>""".format(resolution[0], resolution[1], url)
3917
3957
  display(HTML(html))
3918
3958
 
3959
+ """
3960
+ #EXPERIMENTAL EMSCRIPTEN INLINE VERSION
3961
+ html = control._emscriptencode(menu)
3962
+ ID = str(len(self.webglviews))
3963
+ template = control.emscripten_inline
3964
+ #template = template.replace('---ID---', ID)
3965
+ #template = template.replace('---INIT---', 'initPage(\'{0}\', {1});'.format(ID, "true" if menu else "false"))
3966
+ #template = template.replace('---CONTENT---', control.hiddenhtml)
3967
+ #template = template.replace('---WIDTH---', str(resolution[0]))
3968
+ #template = template.replace('---HEIGHT---', str(resolution[1]))
3969
+ html = template.replace('---SCRIPTS---', html)
3970
+ self.webglviews.append(ID)
3971
+
3972
+ #Display inline in cell
3973
+ #from IPython.display import IFrame
3974
+ #display(IFrame(filename, width=resolution[0], height=resolution[1]))
3975
+ from IPython.display import display,HTML
3976
+ display(HTML(html))
3977
+ """
3978
+
3919
3979
  def webgl(self, filename=None, resolution=(640,480), browser=False, menu=True, **kwargs):
3920
3980
  """
3921
3981
  Create a WebGL page with a 3D interactive view of the active model
@@ -4631,6 +4691,59 @@ class Viewer(dict):
4631
4691
  self.render()
4632
4692
  convert.export_any(filepath, objects)
4633
4693
 
4694
+ @is_documented_by(_brightness_contrast_saturation)
4695
+ def brightness_contrast_saturation(self, brightness=0, contrast=0, saturation=0):
4696
+ return _brightness_contrast_saturation(self, brightness, contrast, saturation)
4697
+
4698
+ def set_properties(self, objects=None, **kwargs):
4699
+ """
4700
+ Set properties on viewer or on a set of objects by name
4701
+
4702
+ Parameters
4703
+ ----------
4704
+ objects : list
4705
+ List of objects or object names, if not provided the properties will be applied globally to the Viewer itself
4706
+ **kwargs :
4707
+ key=value property names and values to set
4708
+ """
4709
+ if objects is None:
4710
+ for key in kwargs:
4711
+ self[key] = kwargs[key]
4712
+ else:
4713
+ for o in objects:
4714
+ if isinstance(o, str):
4715
+ obj = self.objects[o]
4716
+ else:
4717
+ obj = o
4718
+ for key in kwargs:
4719
+ obj[key] = kwargs[key]
4720
+
4721
+ def set_uniforms(self, objects=None, **kwargs):
4722
+ """
4723
+ Set uniform variables on a set of objects by name or all objects
4724
+ Uniforms are parameters sent directly to the shader program and can have any
4725
+ valid GLSL variable name, it just needs to match the declaration in the shader
4726
+
4727
+ Parameters
4728
+ ----------
4729
+ objects : list
4730
+ List of objects or object names, if not provided the full object list will be iterated
4731
+ **kwargs :
4732
+ key=value uniform names and values to set
4733
+ """
4734
+ if objects == None: objects = self.objects.list
4735
+ if not isinstance(objects, list):
4736
+ objects = [objects]
4737
+ for o in objects:
4738
+ if isinstance(o, str):
4739
+ obj = self.objects[o]
4740
+ else:
4741
+ obj = o
4742
+ uniforms = obj['uniforms']
4743
+ for key in kwargs:
4744
+ uniforms[key] = kwargs[key]
4745
+ obj['uniforms'] = uniforms
4746
+
4634
4747
  #Wrapper for list of geomdata objects
4635
4748
  class Geometry(list):
4636
4749
  """
@@ -5257,7 +5370,7 @@ class Video(object):
5257
5370
  def __exit__(self, exc_type, exc_value, exc_traceback):
5258
5371
  self.stop()
5259
5372
  if exc_value == None:
5260
- print('Recording complete, filename: ', self.filename)
5373
+ #print('Recording complete, filename: ', self.filename)
5261
5374
  self.play()
5262
5375
  else:
5263
5376
  print('Recording failed: ', exc_value)
lavavu/vutils.py CHANGED
@@ -81,15 +81,10 @@ def download(url, filename=None, overwrite=False, quiet=False):
81
81
  filename : str
82
82
  Actual filename written to local filesystem
83
83
  """
84
- #Python 3 moved modules
85
- try:
86
- from urllib.request import urlopen, URLError, HTTPError, Request
87
- from urllib.parse import urlparse
88
- from urllib.parse import quote
89
- except ImportError:
90
- from urllib2 import urlopen, URLError, HTTPError, Request
91
- from urllib import quote
92
- from urlparse import urlparse
84
+ from urllib.request import urlopen, URLError, HTTPError, Request
85
+ from urllib.parse import urlparse
86
+ from urllib.parse import quote
87
+ import http.client
93
88
 
94
89
  if filename is None:
95
90
  filename = url[url.rfind("/")+1:]
@@ -105,9 +100,12 @@ def download(url, filename=None, overwrite=False, quiet=False):
105
100
  user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7'
106
101
  headers = {'User-Agent':user_agent,}
107
102
  request = Request(url, None, headers)
108
- response = urlopen(request)
109
103
  with open(filename, "wb") as out:
110
- out.write(response.read())
104
+ try:
105
+ page = urlopen(request).read()
106
+ except (http.client.IncompleteRead) as e:
107
+ page = e.partial
108
+ out.write(page)
111
109
  except (Exception) as e:
112
110
  print(str(e), url)
113
111
  raise(e)
@@ -0,0 +1,318 @@
1
+ Metadata-Version: 2.1
2
+ Name: lavavu-osmesa
3
+ Version: 1.8.76
4
+ Summary: Python interface to LavaVu OpenGL 3D scientific visualisation utilities
5
+ Author-email: Owen Kaluza <owen@kaluza.id.au>
6
+ License: ### Licensing
7
+
8
+ 1) All source code is released under the LGPL-3 (See below). This covers all
9
+ files found in the `src` directory and any other material not explicitly
10
+ identified under (2) below.
11
+
12
+ 2) Notebooks, stand-alone documentation and python scripts which show how the code is used and run are licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. We offer this licence to encourage you to modify and share the examples and use them to help you in your research. Where no individual creator is identified in these files, the appropriate attribution is "The LavaVu Team". All the files covered by this license are found in the `scripts` and `notebooks` directories.
13
+
14
+ ### Copyright holders
15
+
16
+ Copyright Monash University, 2009-2017
17
+
18
+ ### License
19
+
20
+ GNU LESSER GENERAL PUBLIC LICENSE
21
+ Version 3, 29 June 2007
22
+
23
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
24
+ Everyone is permitted to copy and distribute verbatim copies
25
+ of this license document, but changing it is not allowed.
26
+
27
+
28
+ This version of the GNU Lesser General Public License incorporates
29
+ the terms and conditions of version 3 of the GNU General Public
30
+ License, supplemented by the additional permissions listed below.
31
+
32
+ 0. Additional Definitions.
33
+
34
+ As used herein, "this License" refers to version 3 of the GNU Lesser
35
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
36
+ General Public License.
37
+
38
+ "The Library" refers to a covered work governed by this License,
39
+ other than an Application or a Combined Work as defined below.
40
+
41
+ An "Application" is any work that makes use of an interface provided
42
+ by the Library, but which is not otherwise based on the Library.
43
+ Defining a subclass of a class defined by the Library is deemed a mode
44
+ of using an interface provided by the Library.
45
+
46
+ A "Combined Work" is a work produced by combining or linking an
47
+ Application with the Library. The particular version of the Library
48
+ with which the Combined Work was made is also called the "Linked
49
+ Version".
50
+
51
+ The "Minimal Corresponding Source" for a Combined Work means the
52
+ Corresponding Source for the Combined Work, excluding any source code
53
+ for portions of the Combined Work that, considered in isolation, are
54
+ based on the Application, and not on the Linked Version.
55
+
56
+ The "Corresponding Application Code" for a Combined Work means the
57
+ object code and/or source code for the Application, including any data
58
+ and utility programs needed for reproducing the Combined Work from the
59
+ Application, but excluding the System Libraries of the Combined Work.
60
+
61
+ 1. Exception to Section 3 of the GNU GPL.
62
+
63
+ You may convey a covered work under sections 3 and 4 of this License
64
+ without being bound by section 3 of the GNU GPL.
65
+
66
+ 2. Conveying Modified Versions.
67
+
68
+ If you modify a copy of the Library, and, in your modifications, a
69
+ facility refers to a function or data to be supplied by an Application
70
+ that uses the facility (other than as an argument passed when the
71
+ facility is invoked), then you may convey a copy of the modified
72
+ version:
73
+
74
+ a) under this License, provided that you make a good faith effort to
75
+ ensure that, in the event an Application does not supply the
76
+ function or data, the facility still operates, and performs
77
+ whatever part of its purpose remains meaningful, or
78
+
79
+ b) under the GNU GPL, with none of the additional permissions of
80
+ this License applicable to that copy.
81
+
82
+ 3. Object Code Incorporating Material from Library Header Files.
83
+
84
+ The object code form of an Application may incorporate material from
85
+ a header file that is part of the Library. You may convey such object
86
+ code under terms of your choice, provided that, if the incorporated
87
+ material is not limited to numerical parameters, data structure
88
+ layouts and accessors, or small macros, inline functions and templates
89
+ (ten or fewer lines in length), you do both of the following:
90
+
91
+ a) Give prominent notice with each copy of the object code that the
92
+ Library is used in it and that the Library and its use are
93
+ covered by this License.
94
+
95
+ b) Accompany the object code with a copy of the GNU GPL and this license
96
+ document.
97
+
98
+ 4. Combined Works.
99
+
100
+ You may convey a Combined Work under terms of your choice that,
101
+ taken together, effectively do not restrict modification of the
102
+ portions of the Library contained in the Combined Work and reverse
103
+ engineering for debugging such modifications, if you also do each of
104
+ the following:
105
+
106
+ a) Give prominent notice with each copy of the Combined Work that
107
+ the Library is used in it and that the Library and its use are
108
+ covered by this License.
109
+
110
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
111
+ document.
112
+
113
+ c) For a Combined Work that displays copyright notices during
114
+ execution, include the copyright notice for the Library among
115
+ these notices, as well as a reference directing the user to the
116
+ copies of the GNU GPL and this license document.
117
+
118
+ d) Do one of the following:
119
+
120
+ 0) Convey the Minimal Corresponding Source under the terms of this
121
+ License, and the Corresponding Application Code in a form
122
+ suitable for, and under terms that permit, the user to
123
+ recombine or relink the Application with a modified version of
124
+ the Linked Version to produce a modified Combined Work, in the
125
+ manner specified by section 6 of the GNU GPL for conveying
126
+ Corresponding Source.
127
+
128
+ 1) Use a suitable shared library mechanism for linking with the
129
+ Library. A suitable mechanism is one that (a) uses at run time
130
+ a copy of the Library already present on the user's computer
131
+ system, and (b) will operate properly with a modified version
132
+ of the Library that is interface-compatible with the Linked
133
+ Version.
134
+
135
+ e) Provide Installation Information, but only if you would otherwise
136
+ be required to provide such information under section 6 of the
137
+ GNU GPL, and only to the extent that such information is
138
+ necessary to install and execute a modified version of the
139
+ Combined Work produced by recombining or relinking the
140
+ Application with a modified version of the Linked Version. (If
141
+ you use option 4d0, the Installation Information must accompany
142
+ the Minimal Corresponding Source and Corresponding Application
143
+ Code. If you use option 4d1, you must provide the Installation
144
+ Information in the manner specified by section 6 of the GNU GPL
145
+ for conveying Corresponding Source.)
146
+
147
+ 5. Combined Libraries.
148
+
149
+ You may place library facilities that are a work based on the
150
+ Library side by side in a single library together with other library
151
+ facilities that are not Applications and are not covered by this
152
+ License, and convey such a combined library under terms of your
153
+ choice, if you do both of the following:
154
+
155
+ a) Accompany the combined library with a copy of the same work based
156
+ on the Library, uncombined with any other library facilities,
157
+ conveyed under the terms of this License.
158
+
159
+ b) Give prominent notice with the combined library that part of it
160
+ is a work based on the Library, and explaining where to find the
161
+ accompanying uncombined form of the same work.
162
+
163
+ 6. Revised Versions of the GNU Lesser General Public License.
164
+
165
+ The Free Software Foundation may publish revised and/or new versions
166
+ of the GNU Lesser General Public License from time to time. Such new
167
+ versions will be similar in spirit to the present version, but may
168
+ differ in detail to address new problems or concerns.
169
+
170
+ Each version is given a distinguishing version number. If the
171
+ Library as you received it specifies that a certain numbered version
172
+ of the GNU Lesser General Public License "or any later version"
173
+ applies to it, you have the option of following the terms and
174
+ conditions either of that published version or of any later version
175
+ published by the Free Software Foundation. If the Library as you
176
+ received it does not specify a version number of the GNU Lesser
177
+ General Public License, you may choose any version of the GNU Lesser
178
+ General Public License ever published by the Free Software Foundation.
179
+
180
+ If the Library as you received it specifies that a proxy can decide
181
+ whether future versions of the GNU Lesser General Public License shall
182
+ apply, that proxy's public statement of acceptance of any version is
183
+ permanent authorization for you to choose that version for the
184
+ Library.
185
+
186
+ Project-URL: Documentation, https://lavavu.github.io
187
+ Project-URL: Source, https://github.com/lavavu/LavaVu
188
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
189
+ Classifier: Intended Audience :: Developers
190
+ Classifier: Intended Audience :: Science/Research
191
+ Classifier: Operating System :: POSIX :: Linux
192
+ Classifier: Operating System :: MacOS
193
+ Classifier: Operating System :: Microsoft :: Windows
194
+ Classifier: Environment :: X11 Applications
195
+ Classifier: Environment :: MacOS X :: Cocoa
196
+ Classifier: Environment :: Win32 (MS Windows)
197
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
198
+ Classifier: Topic :: Scientific/Engineering :: Visualization
199
+ Classifier: Development Status :: 5 - Production/Stable
200
+ Classifier: Programming Language :: C++
201
+ Classifier: Programming Language :: Python :: 3
202
+ Classifier: Programming Language :: Python :: 3.6
203
+ Classifier: Programming Language :: Python :: 3.7
204
+ Classifier: Programming Language :: Python :: 3.8
205
+ Classifier: Programming Language :: Python :: 3.9
206
+ Classifier: Programming Language :: Python :: 3.10
207
+ Classifier: Programming Language :: Python :: 3.11
208
+ Classifier: Programming Language :: Python :: 3.12
209
+ Classifier: Programming Language :: Python :: 3 :: Only
210
+ Classifier: Framework :: Jupyter
211
+ Classifier: Framework :: IPython
212
+ Requires-Python: >=3.5
213
+ Description-Content-Type: text/markdown
214
+ License-File: LICENSE.md
215
+ Requires-Dist: numpy>=1.18
216
+ Requires-Dist: aiohttp
217
+ Requires-Dist: jupyter-server-proxy
218
+
219
+ ![# logo](http://owen.kaluza.id.au/Slides/2017-08-15/LavaVu.png)
220
+
221
+ [![Build Status](https://github.com/lavavu/LavaVu/workflows/Test/badge.svg)](https://github.com/lavavu/LavaVu/actions?query=workflow:Test)
222
+ [![Deploy Status](https://github.com/lavavu/LavaVu/workflows/Deploy/badge.svg?branch=1.7.3)](https://github.com/lavavu/LavaVu/actions?query=workflow:Deploy)
223
+ [![DOI](https://zenodo.org/badge/45163055.svg)](https://zenodo.org/badge/latestdoi/45163055)
224
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/lavavu/LavaVu/1.8.76)
225
+
226
+ A scientific visualisation tool with a python interface for fast and flexible visual analysis.
227
+
228
+ Documentation available here [LavaVu Documentation](https://lavavu.github.io/Documentation/)
229
+
230
+ ![examplevis](http://owen.kaluza.id.au/Slides/2017-08-15/combined.png)
231
+
232
+ LavaVu development is supported by the [Monash Immersive Visualisation Plaform](http://monash.edu.au/mivp) and the Simulation, Analysis & Modelling component of the [NCRIS AuScope](http://www.auscope.org.au/ncris/) capability.
233
+
234
+ The acronym stands for: lightweight, automatable visualisation and analysis viewing utility, but "lava" is also a reference to its primary application as a viewer for geophysical simulations. It was also chosen to be unique enough to find the repository with google.
235
+
236
+ The project started in the gLucifer<sup>1</sup> framework for visualising geodynamics simulations. The OpenGL visualisation module was separated from the simulation and sampling libraries and became a more general purpose visualisation tool. gLucifer continues as a set of sampling tools for Underworld simulations as part of the [Underworld2](https://github.com/underworldcode/underworld2/) code. LavaVu provides the rendering library for creating 2d and 3d visualisations to view this sampled data, inline within interactive IPython notebooks and offline through saved visualisation databases and images/movies.
237
+
238
+ As a standalone tool it is a scriptable 3D visualisation tool capable of producing publication quality high res images and video output from time varying data sets along with HTML5 3D visualisations in WebGL.
239
+ Rendering features include correctly and efficiently rendering large numbers of opaque and transparent points and surfaces and volume rendering by GPU ray-marching. There are also features for drawing vector fields and tracers (streamlines).
240
+
241
+ Control is via python and a set of simple verbose scripting commands along with mouse/keyboard interaction.
242
+ GUI components can be generated for use from a web browser via the python "control" module and a built in web server.
243
+
244
+ A native data format called GLDB is used to store and visualisations in a compact single file, using SQLite for storage and fast loading. A small number of other data formats are supported for import (OBJ surfaces, TIFF stacks etc).
245
+ Further data import formats are supported with python scripts, with the numpy interface allowing rapid loading and manipulation of data.
246
+
247
+ A CAVE2 virtual reality mode is provided by utilising Omegalib (http://github.com/uic-evl/omegalib) to allow use in Virtual Reality and Immersive Visualisation facilities, such as the CAVE2 at Monash, see (https://github.com/mivp/LavaVR).
248
+ Side-by-side and quad buffer stereoscopic 3D support is also provided for other 3D displays.
249
+
250
+ ### This repository ###
251
+
252
+ This is the public source code repository for all development on the project.
253
+ Development happens in the "master" branch with stable releases tagged, so if you just check out master, be aware that things can be unstable or broken from time to time.
254
+
255
+ ### How do I get set up? ###
256
+
257
+ It's now in the python package index, so you can install with *pip*:
258
+
259
+ ```
260
+ pip install --user lavavu
261
+ ```
262
+
263
+ > If you don't have pip available, you can try `sudo easy_install pip` or just install [Anaconda](https://www.anaconda.com/download), which comes with pip and a whole lot of other useful packages for scientific work with python. Once in anaconda `pip install lavavu` will install the package.
264
+
265
+ > Currently no binaries are provided and the installer needs to compile the library, so on Linux you may need some developer tools and headers first, eg: for Ubuntu:
266
+ `sudo apt install build-essential libgl1-mesa-dev libx11-dev zlib1g-dev`
267
+
268
+ To try it out:
269
+
270
+ ```
271
+ python
272
+ > import lavavu
273
+ > lv = lavavu.Viewer() #Create a viewer
274
+ > lv.test() #Plot some sample data
275
+ > lv.interactive() #Open an interactive viewer window
276
+ ```
277
+
278
+ Alternatively, clone this repository with *git* and build from source:
279
+
280
+ ```
281
+ git clone https://github.com/lavavu/LavaVu
282
+ cd LavaVu
283
+ make -j4
284
+ ```
285
+
286
+ If all goes well the viewer will be built, try running with:
287
+ ./lavavu/LavaVu
288
+
289
+ ### Dependencies ###
290
+
291
+ * OpenGL and Zlib, present on most systems, headers may need to be installed
292
+ * To use with python requires python 2.7+ and NumPy
293
+ * For video output, requires: libavcodec, libavformat, libavutil, libswscale (from FFmpeg / libav)
294
+ * To build the python interface from source requires swig (http://www.swig.org/)
295
+
296
+ ### Who do I talk to? ###
297
+
298
+ * Report bugs/issues here on github: https://github.com/lavavu/LavaVu/issues
299
+ * Contact developer: Owen Kaluza (at) monash.edu
300
+
301
+ For further documentation / examples, see the online documentation
302
+ * https://lavavu.github.io/Documentation
303
+
304
+ ### Included libraries ###
305
+ In order to avoid as many external dependencies as possible, the LavaVu sources include files from the following public domain or open source libraries, many thanks to the authors for making their code available!
306
+ * SQLite3 https://www.sqlite.org
307
+ * JSON for Modern C++ https://github.com/nlohmann/json
308
+ * linalg https://github.com/sgorsten/linalg
309
+ * Tiny OBJ Loader https://github.com/syoyo/tinyobjloader
310
+ * LodePNG https://github.com/lvandeve/lodepng
311
+ * jpeg-compressor https://github.com/richgel999/jpeg-compressor
312
+ * miniz https://github.com/richgel999/miniz
313
+ * GPU Cubic B-Spline Interpolation (optional) in volume shader http://www.dannyruijters.nl/cubicinterpolation/ <sup>2</sup>
314
+ * stb_image_resize http://github.com/nothings/stb
315
+
316
+ ---
317
+ <sup>1</sup> [Stegman, D.R., Moresi, L., Turnbull, R., Giordani, J., Sunter, P., Lo, A. and S. Quenette, *gLucifer: Next Generation Visualization Framework for High performance computational geodynamics*, 2008, Visual Geosciences](http://dx.doi.org/10.1007/s10069-008-0010-2)
318
+ <sup>2</sup> [Ruijters, Daniel & ter Haar Romeny, Bart & Suetens, Paul. (2008). Efficient GPU-Based Texture Interpolation using Uniform B-Splines. J. Graphics Tools. 13. 61-69.](http://dx.doi.org/10.1080/2151237X.2008.10129269)
@@ -1,73 +1,72 @@
1
- lavavu/lavavu.py,sha256=j710i05alXW92-C73OUb_SEZP19IoKB-NAz40Mf-ss8,201005
2
- lavavu/LavaVuPython.py,sha256=Ki8G9XYHkyfqmxG6BohDWomvSn5eJwG9cHqGzEhZDDs,33131
3
- lavavu/tracers.py,sha256=0dB6v9Jg5G-IeZxiVFvbPoTycGvyAQBtgyEAZUmq4XU,4257
4
1
  lavavu/dict.json,sha256=Zb1QnJOsx2DK3M1tRSXRUQ5PjEpOo3SMM3tTNHIKMPs,52722
5
- lavavu/vutils.py,sha256=YiuCRRwwoZ3UgQtnNwl22lWnqshIEVfQ3-biV1-5JnA,5508
6
- lavavu/_LavaVuPython.cpython-311-x86_64-linux-gnu.so,sha256=F8-B0haruWTJoXY3AKj4gbqq7OYAq-F6PuCHUjhmnls,76419337
7
- lavavu/server.py,sha256=L-_yPCbNfwYxJCPjDQtr_lxPnDp4oMNVFyxXhBERYrQ,12468
2
+ lavavu/_LavaVuPython.cpython-311-x86_64-linux-gnu.so,sha256=RVZYzhzOoqa3Zpzc7Mdvs8tA8zYflW2Dv3-jvpQ8pjo,76481009
8
3
  lavavu/__main__.py,sha256=EbDetijCjyoiNxmExqnDGoRVs996tSVave5DML9zuMY,235
9
- lavavu/amalgamate.py,sha256=Xloq1IZ4VUvYiROzQtwKcQIWC65c7EZrdiGVhZdolL8,586
4
+ lavavu/server.py,sha256=L-_yPCbNfwYxJCPjDQtr_lxPnDp4oMNVFyxXhBERYrQ,12468
10
5
  lavavu/font.bin,sha256=fvi5zkvmq6gh9v3jXedBVuxNJWKmHtbjECzv6eT9wb4,225360
11
- lavavu/convert.py,sha256=JT73q32YMchuSIkoH_A0cTUVwfns8fWLGjyWp2A5i5M,35514
6
+ lavavu/LavaVuPython.py,sha256=ZdBJROEPysd_N_Od88PEO8Y1fjCOd05_vP6YBnJymN0,33131
7
+ lavavu/tracers.py,sha256=0dB6v9Jg5G-IeZxiVFvbPoTycGvyAQBtgyEAZUmq4XU,4257
8
+ lavavu/vutils.py,sha256=6Vm_xl1bp9mWlfk7jgLDwbRw-tdE_oxin77YkLel3_4,5437
9
+ lavavu/lavavu.py,sha256=_6kKbk3KXUTDWYoSCkcnYLKOQPRkZteDepBApKepPUs,205612
12
10
  lavavu/__init__.py,sha256=JroZQiUbuVN7ifixk2zNDGlyLGaM8bqfRbw4D_F9qIQ,191
13
11
  lavavu/points.py,sha256=jRRtA6CrcA46Y2jUJmkxnIiVoMC5a14xEd_ojhmjhz4,5871
14
- lavavu/control.py,sha256=MWoYWBhqJbq_1GArE79SQAcZ1rINlvl0bx5nV5XTf8U,65568
15
- lavavu/aserver.py,sha256=h36g8nOGngHigMb1ifW-g71W4uOMF9oG-T7w0vCvdfs,11929
16
- lavavu/shaders/fontShader.vert,sha256=yCBmRugaPUeUQUdIh62-AK_5KELiJqVS2M82iyIqPwo,290
12
+ lavavu/aserver.py,sha256=SfFvLeDTcx1XtS8fY_HIrDmh3q9HicCBRSAriY5yyOE,12003
13
+ lavavu/control.py,sha256=eNocZPc-2Dz-nSty_KRz_9RzLvbU0clJGuAV3qnzxbU,65841
14
+ lavavu/amalgamate.py,sha256=Xloq1IZ4VUvYiROzQtwKcQIWC65c7EZrdiGVhZdolL8,586
15
+ lavavu/convert.py,sha256=tbYRjLE2l1hI4d6tsW41Lia1JXmrWSc0-JAYCiMrjys,35516
17
16
  lavavu/shaders/pointShader.frag,sha256=T1PA9Z6FiE66rS2sAmmFIbYM2VqEkLBycxV-sx3nACY,3384
18
- lavavu/shaders/volumeShader.frag,sha256=CIFSfwI8xVZ0ALme2QPMcXWl5yB55WCGnfJZ1Led6TU,16120
19
- lavavu/shaders/lineShader.vert,sha256=6kJQcfu3eqaj910_KdaklVRvYxNbeu0ZbpDEOxRVde0,522
17
+ lavavu/shaders/lineShader.frag,sha256=aCmOWC20fHinR32p6LZPdCZP6abn-K1V2slbJ_5NoVA,945
18
+ lavavu/shaders/fontShader.vert,sha256=yCBmRugaPUeUQUdIh62-AK_5KELiJqVS2M82iyIqPwo,290
20
19
  lavavu/shaders/volumeShader.vert,sha256=uGdQjGqi7V5kE6V7nxymfugtU4cbf6u570xBy13RgmY,78
21
- lavavu/shaders/default.frag,sha256=xCkYz8QriRlnAr-NtenZSIWI_liSxv9jz3Lp5immK9k,258
22
- lavavu/shaders/triShader.frag,sha256=pG6eWiVgtHB8cSHyB8W3SHrc7-mLqaCRlZaHZfsEKhc,5007
20
+ lavavu/shaders/lineShader.vert,sha256=6kJQcfu3eqaj910_KdaklVRvYxNbeu0ZbpDEOxRVde0,522
23
21
  lavavu/shaders/fontShader.frag,sha256=DXAzO7kS36TBzYMJW0XqFiQQTTc4jFedGiUkLjelYKs,444
24
22
  lavavu/shaders/pointShader.vert,sha256=rnEa8PfIK3kFtFg04Ataf10aWsjEkh1URY2ipV1xTMY,1235
25
- lavavu/shaders/default.vert,sha256=9J5Oqg8ns711fSNeQTtdA7ENb2sfonx0KGh1QfHp5Ws,317
26
23
  lavavu/shaders/triShader.vert,sha256=pJXftq7IiqiGe7NTMmuBUMDs4OZc9TD8lNJ4q-8B57Q,1120
27
- lavavu/shaders/lineShader.frag,sha256=aCmOWC20fHinR32p6LZPdCZP6abn-K1V2slbJ_5NoVA,945
28
- lavavu/html/emscripten.css,sha256=wkaIJhXaxuMchinQX9Z8c12cJomyvFQMeIZ62WGQEPQ,1813
24
+ lavavu/shaders/triShader.frag,sha256=pG6eWiVgtHB8cSHyB8W3SHrc7-mLqaCRlZaHZfsEKhc,5007
25
+ lavavu/shaders/default.vert,sha256=9J5Oqg8ns711fSNeQTtdA7ENb2sfonx0KGh1QfHp5Ws,317
26
+ lavavu/shaders/volumeShader.frag,sha256=CIFSfwI8xVZ0ALme2QPMcXWl5yB55WCGnfJZ1Led6TU,16120
27
+ lavavu/shaders/default.frag,sha256=xCkYz8QriRlnAr-NtenZSIWI_liSxv9jz3Lp5immK9k,258
29
28
  lavavu/html/server.js,sha256=b5eNlWWbiEk90n3WARJ1Mh7lmfHM0pOtZfrrmM-wfyc,7099
30
- lavavu/html/webview.html,sha256=Q4SOJhr8M8y-Ub-BRIobkWwrpORHB7abrS-mc1D_a2M,1522
31
- lavavu/html/control.js,sha256=Gi3eszKip1JsrM1HrMvSJWjqFZql6DPXdMUkU6Zuj7Q,11466
29
+ lavavu/html/dat-gui-light-theme.css,sha256=uPhvJs-1IAsdxudItyOw8lZy8Hrih0zmFM1u-xRwZ-M,1142
32
30
  lavavu/html/control.css,sha256=PVLwmle00ciEckUV5ZIRmI3Whxhl7-mlVexnyyxoU70,3259
33
- lavavu/html/gui.css,sha256=PRDLsYwM6cgLC9zZsEAG0dnnSd-HYH6oSEfsdEBkuxk,582
34
- lavavu/html/emscripten-template.js,sha256=8OBEPzJYW00-b2d-BUQetFIivIO8PD_ktiCXd_GAEHQ,6133
35
- lavavu/html/draw.js,sha256=57LlHlYRh0IvWVwzGDnF6PaCxYLzokpokLNCuZlG1ds,84108
31
+ lavavu/html/webview-template.html,sha256=Mh9sOd6YEOiwJa_fPwyY4s9AdCuvsaHKLwVipVk_4Go,1530
36
32
  lavavu/html/styles.css,sha256=68pH0fWIc0mP1puFbsIg0ET9G1ujd40Aiqfx4phuzjs,2983
37
33
  lavavu/html/OK-min.js,sha256=-4Gc1-dWfxP_w6r9ZOHa8u-X2BlGUoSQbX68lwCxQ3E,39115
34
+ lavavu/html/gui.css,sha256=PRDLsYwM6cgLC9zZsEAG0dnnSd-HYH6oSEfsdEBkuxk,582
35
+ lavavu/html/draw.js,sha256=57LlHlYRh0IvWVwzGDnF6PaCxYLzokpokLNCuZlG1ds,84108
38
36
  lavavu/html/stats.min.js,sha256=iiwrLW4SUBhrzWrfW2VZP_9mowHX-Ks1EKORFv4EHdE,1965
39
- lavavu/html/webview-template.html,sha256=Mh9sOd6YEOiwJa_fPwyY4s9AdCuvsaHKLwVipVk_4Go,1530
40
- lavavu/html/drawbox.js,sha256=oaB6bokR4uA2mT9IDLZR7n6P-eDQ86auGbRQHWX423M,34280
41
- lavavu/html/favicon.ico,sha256=OrIWwvxOSnOCuynrGRUyEIVQng0ZwA9Rrz89S9eiog0,1150
42
- lavavu/html/dat-gui-light-theme.css,sha256=uPhvJs-1IAsdxudItyOw8lZy8Hrih0zmFM1u-xRwZ-M,1142
43
- lavavu/html/menu.js,sha256=Kep88q4kEPXUfoa4xEEOLWieFph8pFnp1UR92d7VRiA,21466
44
- lavavu/html/gl-matrix-min.js,sha256=qfhP_dWP2bTSL1ibMX2IYw7KDXBW2IhgpfhvU9kKjhM,23143
37
+ lavavu/html/webview.html,sha256=vD2cFL5mpl1TLA_-Ys6_yiOt8snXxu5YrGfDiVAmRoI,1522
38
+ lavavu/html/emscripten-template.js,sha256=h63mzl3Lv7aQT1wMOiOucPOvHTJjpKkzsL-SFVYaZlA,6135
39
+ lavavu/html/drawbox.js,sha256=SJxFSmWd7QVFI5__66hFkKzLKeqg1JPcx-gJuqdMkXw,34590
45
40
  lavavu/html/dat.gui.min.js,sha256=S4_QjoXe4IOpU0f0Sj5jEQLTWPoX9uRl1ohB91jyhuw,56992
46
- lavavu/html/LavaVu-amalgamated.css,sha256=iE2xrxFcwmY0AcASrXxNa_RpvFEbS_YO4H5OILbPteE,8640
41
+ lavavu/html/control.js,sha256=Gi3eszKip1JsrM1HrMvSJWjqFZql6DPXdMUkU6Zuj7Q,11466
42
+ lavavu/html/gl-matrix-min.js,sha256=qfhP_dWP2bTSL1ibMX2IYw7KDXBW2IhgpfhvU9kKjhM,23143
43
+ lavavu/html/menu.js,sha256=WCli3UYcQ7frjNq0aAXNALu33iNiN8lpTYwKZ7pUcn4,21501
44
+ lavavu/html/emscripten.css,sha256=wkaIJhXaxuMchinQX9Z8c12cJomyvFQMeIZ62WGQEPQ,1813
47
45
  lavavu/html/baseviewer.js,sha256=u3UhC1At6rMBKmcQ7d2DXTRxQ20wsQkc4lqA-7sL7i4,9567
48
- lavavu_osmesa.libs/libOSMesa-52131ed3.so.8.0.0,sha256=t3P4raZCEgaX0U8U540GxJlBHOOXHM_O8soe2WICI5U,12995657
49
- lavavu_osmesa.libs/libglapi-547e8b87.so.0.0.0,sha256=aOAv9fHHkv2S-6ORkyyV1zzffND_vqINZgSwLiRVf40,247921
50
- lavavu_osmesa.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
46
+ lavavu/html/favicon.ico,sha256=OrIWwvxOSnOCuynrGRUyEIVQng0ZwA9Rrz89S9eiog0,1150
47
+ lavavu/html/LavaVu-amalgamated.css,sha256=iE2xrxFcwmY0AcASrXxNa_RpvFEbS_YO4H5OILbPteE,8640
48
+ lavavu_osmesa.libs/libswscale-12194c6c.so.8.2.100,sha256=M8RfhosM8ZezWmVQhcCKhUBIefnlVtPBwd-sbw9kjuE,624017
49
+ lavavu_osmesa.libs/libglapi-d9260dde.so.0.0.0,sha256=lk2-KJ-TfqKogN82K9yu6G_StS6MtPDFNP7dN1CZSjo,247921
50
+ lavavu_osmesa.libs/libavformat-92c3debc.so.61.5.101,sha256=s0b8iuOJjJpnIT7FaP3qCAhBpZQ8gb5uUZF7g_yDx1c,2686353
51
51
  lavavu_osmesa.libs/libdrm-41d47e04.so.2.4.0,sha256=9sDQ2C1T7GZWMDE_2apzPgXKepcVFcJ_oD6XvIIjPfU,96417
52
- lavavu_osmesa.libs/libmvec-2-fc8a8ddc.28.so,sha256=iAQ2hG59C1bWzxg-2XRUdLyZ34o6_XkuddfiBd_oCsc,181969
53
- lavavu_osmesa.libs/libx264-bf5099d6.so.164,sha256=zYqC15b_Rpp58vk0W-g8KEEo4wj-H7hq6U_iNIB4dDo,2431745
54
- lavavu_osmesa.libs/libjbig-2504a0c3.so.2.1,sha256=VejIx8sDX3xfCuJkrk9HEyWBYjZbUiTyIRuoPqT-ibE,54265
55
- lavavu_osmesa.libs/libtinfo-a91ae06d.so.6.1,sha256=ylcRm-p3vHbtqqnOK25Yg166VdRjXdG7wt055cEqshY,194041
56
- lavavu_osmesa.libs/libswscale-b3ad9321.so.7.6.100,sha256=9svHU5PUrxrgSipVeBZIwyfaWAfRO_89ZYj0qhXHgbk,583073
57
- lavavu_osmesa.libs/libavutil-501cb797.so.58.39.100,sha256=649qHiEPQ7JnMak0UvG7VcADQIvmYYeUWREt47UXRw4,1001209
58
- lavavu_osmesa.libs/libbz2-e34b29ae.so.1.0.6,sha256=t0Rx5MGhoqFd8hOzCgew5TwGvZFpy_XTk-dae2FXAEs,79145
59
- lavavu_osmesa.libs/libLLVM-16-8078311d.so,sha256=mTRV7cj_HIgltZqxV2egaEqKOrd-PX93HV0fMXgURGk,120618905
60
- lavavu_osmesa.libs/libtiff-c437d1e6.so.5.3.0,sha256=1EADzxZ1J_gmcxNc4ro1ZONb2qrv3SN-z7BFXzhhA90,517801
61
- lavavu_osmesa.libs/libavcodec-fe4b6e3a.so.60.40.100,sha256=qT_DHJid381lEr2vUZYzRKILkmRLw9B92uTLGsSCoGo,16538353
62
- lavavu_osmesa.libs/libffi-3a37023a.so.6.0.2,sha256=Q1Rq1XplFBXNFHvg92SNmTgQ0T6E9wmcqZcgOZ7DgLE,42489
63
- lavavu_osmesa.libs/libavformat-e549c9d6.so.60.21.101,sha256=2JxR7WysMZcPg5vhjE2dfp_PSbuOC19M10Cw24O7N3k,2649281
52
+ lavavu_osmesa.libs/libavcodec-4cf69f6b.so.61.11.100,sha256=onl3DB1Edq8zRUi320K02s-m74ousH9XfgE5texdyH4,14727113
64
53
  lavavu_osmesa.libs/libzstd-76b78bac.so.1.4.4,sha256=F2-A6yQ3AA2N0vHZe-81OfEUOcwgjjWiOnYAxk2Kflc,686073
65
- lavavu_osmesa.libs/libjpeg-da649728.so.62.2.0,sha256=IoO1YzjSjixVQSs5SiWK95E-RREenSFc2B97tb-x_5E,437961
66
- lavavu_osmesa.libs/libswresample-3637ead4.so.4.13.100,sha256=zUjKqzpR5zF8xffMoRJ2FSuuHT1U4fUhlkY0-jf6704,132433
54
+ lavavu_osmesa.libs/libffi-3a37023a.so.6.0.2,sha256=Q1Rq1XplFBXNFHvg92SNmTgQ0T6E9wmcqZcgOZ7DgLE,42489
67
55
  lavavu_osmesa.libs/libselinux-64a010fa.so.1,sha256=dNJwuKqYp8fwkmrQ9hom3hVQ-lYUkNxxHb4vmrk8zmE,195097
68
- lavavu_osmesa-1.8.62.dist-info/METADATA,sha256=D4waCJiLEBx8_hSIm7ozVsw67RDA7TXS-zCRyr_Qedc,1318
69
- lavavu_osmesa-1.8.62.dist-info/top_level.txt,sha256=JptS0k1nlBumjLs_0hITr3_XUJhxqvKBXD2jGho3E3A,7
70
- lavavu_osmesa-1.8.62.dist-info/WHEEL,sha256=J4bbN10GoQzpGjJyYvC83NBSMthfWnAd9U7UK_TlE_0,114
71
- lavavu_osmesa-1.8.62.dist-info/RECORD,,
72
- lavavu_osmesa-1.8.62.dist-info/entry_points.txt,sha256=LgxRUxcd5pH9w3yYRyTYyGm8xwAlnyvS_CKaisWHDWc,70
73
- lavavu_osmesa-1.8.62.dist-info/LICENSE.md,sha256=EhfNgC6BYh5gDEaq4tcrN3S0wbO4CtJO46botJnCF8c,8603
56
+ lavavu_osmesa.libs/libjpeg-da649728.so.62.2.0,sha256=IoO1YzjSjixVQSs5SiWK95E-RREenSFc2B97tb-x_5E,437961
57
+ lavavu_osmesa.libs/libavutil-928f2adb.so.59.35.100,sha256=XewPt9tCf0D1Y3XixmnXu4n73n6zeqRmvJR1hJ4hC-Y,1005145
58
+ lavavu_osmesa.libs/libOSMesa-25f49adf.so.8.0.0,sha256=fp9dK6I8eVpJ1CT9AhlbAHH4YxXTPrgXxN7qZbBedBM,12995657
59
+ lavavu_osmesa.libs/libbz2-e34b29ae.so.1.0.6,sha256=t0Rx5MGhoqFd8hOzCgew5TwGvZFpy_XTk-dae2FXAEs,79145
60
+ lavavu_osmesa.libs/libtinfo-a91ae06d.so.6.1,sha256=ylcRm-p3vHbtqqnOK25Yg166VdRjXdG7wt055cEqshY,194041
61
+ lavavu_osmesa.libs/libx264-bf5099d6.so.164,sha256=zYqC15b_Rpp58vk0W-g8KEEo4wj-H7hq6U_iNIB4dDo,2431745
62
+ lavavu_osmesa.libs/libLLVM-17-67b6bd0c.so,sha256=TYyjrYZ3iuwN-Z-FvXCMe81i_BSwpUrwLgVGuTJLYkk,120778961
63
+ lavavu_osmesa.libs/libswresample-c9f3a84c.so.5.2.100,sha256=pXiaGEg1d30jmXwZ-COuwo3CKDrVysA-UPdhjFFNKzc,128265
64
+ lavavu_osmesa.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
65
+ lavavu_osmesa.libs/libtiff-97fb0e7a.so.5.3.0,sha256=ReUrhN0yHYGg-Fws0_oHS7soNRaqYFAMCqpS5FXXbMU,517801
66
+ lavavu_osmesa.libs/libjbig-2504a0c3.so.2.1,sha256=VejIx8sDX3xfCuJkrk9HEyWBYjZbUiTyIRuoPqT-ibE,54265
67
+ lavavu_osmesa-1.8.76.dist-info/RECORD,,
68
+ lavavu_osmesa-1.8.76.dist-info/entry_points.txt,sha256=LC2qXR6EMe45Cb7zGAF99R9HFrAECP6Qkp_YuG6HZB0,44
69
+ lavavu_osmesa-1.8.76.dist-info/WHEEL,sha256=zsO-dIKIJUdwFBTak2sgt-MV2GcWQBgc69BtJ30UAGY,113
70
+ lavavu_osmesa-1.8.76.dist-info/LICENSE.md,sha256=EhfNgC6BYh5gDEaq4tcrN3S0wbO4CtJO46botJnCF8c,8603
71
+ lavavu_osmesa-1.8.76.dist-info/top_level.txt,sha256=JptS0k1nlBumjLs_0hITr3_XUJhxqvKBXD2jGho3E3A,7
72
+ lavavu_osmesa-1.8.76.dist-info/METADATA,sha256=W630IixUddl4ac-UHhJ9-6DyRNqDo-TjCcfAP7FcRoI,18244
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-manylinux_2_28_x86_64
5
5
 
@@ -1,3 +1,2 @@
1
1
  [gui_scripts]
2
- LV = lavavu.__main__:main
3
2
  LavaVu = lavavu.__main__:main
@@ -1,33 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: lavavu-osmesa
3
- Version: 1.8.62
4
- Summary: Python interface to LavaVu OpenGL 3D scientific visualisation utilities
5
- Home-page: https://github.com/lavavu/LavaVu
6
- Author: Owen Kaluza
7
- Author-email: owen.kaluza@monash.edu
8
- License: LGPL-3
9
- Platform: any
10
- Classifier: Intended Audience :: Developers
11
- Classifier: Intended Audience :: Science/Research
12
- Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
13
- Classifier: Operating System :: POSIX :: Linux
14
- Classifier: Operating System :: MacOS
15
- Classifier: Operating System :: Microsoft :: Windows
16
- Classifier: Environment :: X11 Applications
17
- Classifier: Environment :: MacOS X :: Cocoa
18
- Classifier: Environment :: Win32 (MS Windows)
19
- Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
20
- Classifier: Topic :: Scientific/Engineering :: Visualization
21
- Classifier: Development Status :: 5 - Production/Stable
22
- Classifier: Programming Language :: C++
23
- Classifier: Programming Language :: Python :: 3.6
24
- Classifier: Programming Language :: Python :: 3.7
25
- Classifier: Programming Language :: Python :: 3.8
26
- Classifier: Framework :: Jupyter
27
- Classifier: Framework :: IPython
28
- License-File: LICENSE.md
29
- Requires-Dist: numpy >=1.11
30
- Requires-Dist: aiohttp
31
- Requires-Dist: jupyter-server-proxy
32
-
33
- See https://github.com/lavavu/LavaVu for more info
Binary file