lavavu-osmesa 1.8.62__cp311-cp311-manylinux_2_28_x86_64.whl → 1.8.75__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 (31) hide show
  1. lavavu/_LavaVuPython.cpython-311-x86_64-linux-gnu.so +0 -0
  2. lavavu/aserver.py +5 -3
  3. lavavu/control.py +7 -0
  4. lavavu/html/drawbox.js +9 -0
  5. lavavu/html/emscripten-template.js +1 -1
  6. lavavu/html/menu.js +1 -0
  7. lavavu/html/webview.html +1 -1
  8. lavavu/lavavu.py +21 -0
  9. lavavu/vutils.py +5 -2
  10. lavavu_osmesa-1.8.75.dist-info/METADATA +318 -0
  11. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.75.dist-info}/RECORD +55 -56
  12. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.75.dist-info}/WHEEL +1 -1
  13. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.75.dist-info}/entry_points.txt +0 -1
  14. lavavu_osmesa.libs/{libLLVM-16-8078311d.so → libLLVM-17-67b6bd0c.so} +0 -0
  15. lavavu_osmesa.libs/{libOSMesa-52131ed3.so.8.0.0 → libOSMesa-dcb3c3c3.so.8.0.0} +0 -0
  16. lavavu_osmesa.libs/{libavcodec-fe4b6e3a.so.60.40.100 → libavcodec-9b24a347.so.61.10.100} +0 -0
  17. lavavu_osmesa.libs/libavformat-c42ae6a5.so.61.5.101 +0 -0
  18. lavavu_osmesa.libs/libavutil-fe3e056a.so.59.28.100 +0 -0
  19. lavavu_osmesa.libs/{libglapi-547e8b87.so.0.0.0 → libglapi-15da1455.so.0.0.0} +0 -0
  20. lavavu_osmesa.libs/libswresample-1fd124bd.so.5.2.100 +0 -0
  21. lavavu_osmesa.libs/libswscale-d65e5891.so.8.2.100 +0 -0
  22. lavavu_osmesa.libs/{libtiff-c437d1e6.so.5.3.0 → libtiff-b477d465.so.5.3.0} +0 -0
  23. lavavu_osmesa.libs/{libx264-bf5099d6.so.164 → libx264-3daadd71.so.164} +0 -0
  24. lavavu_osmesa-1.8.62.dist-info/METADATA +0 -33
  25. lavavu_osmesa.libs/libavformat-e549c9d6.so.60.21.101 +0 -0
  26. lavavu_osmesa.libs/libavutil-501cb797.so.58.39.100 +0 -0
  27. lavavu_osmesa.libs/libmvec-2-fc8a8ddc.28.so +0 -0
  28. lavavu_osmesa.libs/libswresample-3637ead4.so.4.13.100 +0 -0
  29. lavavu_osmesa.libs/libswscale-b3ad9321.so.7.6.100 +0 -0
  30. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.75.dist-info}/LICENSE.md +0 -0
  31. {lavavu_osmesa-1.8.62.dist-info → lavavu_osmesa-1.8.75.dist-info}/top_level.txt +0 -0
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/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.75/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
@@ -3899,6 +3899,7 @@ class Viewer(dict):
3899
3899
  if not is_notebook():
3900
3900
  #Open the file in a new browser window
3901
3901
  import webbrowser
3902
+ #TODO: this url doesn't work
3902
3903
  webbrowser.open("/webview.html", new=1, autoraise=True)
3903
3904
  else:
3904
3905
  from IPython.display import display,HTML,IFrame
@@ -3916,6 +3917,26 @@ class Viewer(dict):
3916
3917
  </div>""".format(resolution[0], resolution[1], url)
3917
3918
  display(HTML(html))
3918
3919
 
3920
+ """
3921
+ #EXPERIMENTAL EMSCRIPTEN INLINE VERSION
3922
+ html = control._emscriptencode(menu)
3923
+ ID = str(len(self.webglviews))
3924
+ template = control.emscripten_inline
3925
+ #template = template.replace('---ID---', ID)
3926
+ #template = template.replace('---INIT---', 'initPage(\'{0}\', {1});'.format(ID, "true" if menu else "false"))
3927
+ #template = template.replace('---CONTENT---', control.hiddenhtml)
3928
+ #template = template.replace('---WIDTH---', str(resolution[0]))
3929
+ #template = template.replace('---HEIGHT---', str(resolution[1]))
3930
+ html = template.replace('---SCRIPTS---', html)
3931
+ self.webglviews.append(ID)
3932
+
3933
+ #Display inline in cell
3934
+ #from IPython.display import IFrame
3935
+ #display(IFrame(filename, width=resolution[0], height=resolution[1]))
3936
+ from IPython.display import display,HTML
3937
+ display(HTML(html))
3938
+ """
3939
+
3919
3940
  def webgl(self, filename=None, resolution=(640,480), browser=False, menu=True, **kwargs):
3920
3941
  """
3921
3942
  Create a WebGL page with a 3D interactive view of the active model
lavavu/vutils.py CHANGED
@@ -105,9 +105,12 @@ def download(url, filename=None, overwrite=False, quiet=False):
105
105
  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
106
  headers = {'User-Agent':user_agent,}
107
107
  request = Request(url, None, headers)
108
- response = urlopen(request)
109
108
  with open(filename, "wb") as out:
110
- out.write(response.read())
109
+ try:
110
+ page = urlopen(request).read()
111
+ except (http.client.IncompleteRead) as e:
112
+ page = e.partial
113
+ out.write(page)
111
114
  except (Exception) as e:
112
115
  print(str(e), url)
113
116
  raise(e)
@@ -0,0 +1,318 @@
1
+ Metadata-Version: 2.1
2
+ Name: lavavu-osmesa
3
+ Version: 1.8.75
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.75)
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
1
+ lavavu_osmesa-1.8.75.dist-info/LICENSE.md,sha256=EhfNgC6BYh5gDEaq4tcrN3S0wbO4CtJO46botJnCF8c,8603
2
+ lavavu_osmesa-1.8.75.dist-info/entry_points.txt,sha256=LC2qXR6EMe45Cb7zGAF99R9HFrAECP6Qkp_YuG6HZB0,44
3
+ lavavu_osmesa-1.8.75.dist-info/WHEEL,sha256=NgovPWl1j4jxbLBZ4WUWvVzJ-8RRAZMdl4suBIcdA48,113
4
+ lavavu_osmesa-1.8.75.dist-info/top_level.txt,sha256=JptS0k1nlBumjLs_0hITr3_XUJhxqvKBXD2jGho3E3A,7
5
+ lavavu_osmesa-1.8.75.dist-info/RECORD,,
6
+ lavavu_osmesa-1.8.75.dist-info/METADATA,sha256=X88k3zMjiqqSt_FSypSj5WlY12QOaKOPk7Zd3hZKLL0,18245
7
+ lavavu_osmesa.libs/libavcodec-9b24a347.so.61.10.100,sha256=OuNIeLm5LjB1v3frPdJYB0POTxL6OA6n4f5ZKKnb4Ww,14669737
8
+ lavavu_osmesa.libs/libzstd-76b78bac.so.1.4.4,sha256=F2-A6yQ3AA2N0vHZe-81OfEUOcwgjjWiOnYAxk2Kflc,686073
9
+ lavavu_osmesa.libs/libglapi-15da1455.so.0.0.0,sha256=J-4aXwZvmt4H2ui9v757tLP85SRGaQM3Yf7x-T03sAU,247921
10
+ lavavu_osmesa.libs/libffi-3a37023a.so.6.0.2,sha256=Q1Rq1XplFBXNFHvg92SNmTgQ0T6E9wmcqZcgOZ7DgLE,42489
11
+ lavavu_osmesa.libs/libtiff-b477d465.so.5.3.0,sha256=r1onUuuM8PAMq6GY0yo-l0Vc5Wz9J8ILr-sOS7XIMhg,517801
12
+ lavavu_osmesa.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
13
+ lavavu_osmesa.libs/libOSMesa-dcb3c3c3.so.8.0.0,sha256=jq91eNqqtuicwcrl9YJ5aVitQ4QuhldodcpUbRvjVmo,12995657
14
+ lavavu_osmesa.libs/libLLVM-17-67b6bd0c.so,sha256=TYyjrYZ3iuwN-Z-FvXCMe81i_BSwpUrwLgVGuTJLYkk,120778961
15
+ lavavu_osmesa.libs/libavformat-c42ae6a5.so.61.5.101,sha256=0ij7xfMRC8MIHEMk7U1za3IrlZh-cKPu5J4XELyErqE,2686361
16
+ lavavu_osmesa.libs/libjbig-2504a0c3.so.2.1,sha256=VejIx8sDX3xfCuJkrk9HEyWBYjZbUiTyIRuoPqT-ibE,54265
17
+ lavavu_osmesa.libs/libbz2-e34b29ae.so.1.0.6,sha256=t0Rx5MGhoqFd8hOzCgew5TwGvZFpy_XTk-dae2FXAEs,79145
18
+ lavavu_osmesa.libs/libdrm-41d47e04.so.2.4.0,sha256=9sDQ2C1T7GZWMDE_2apzPgXKepcVFcJ_oD6XvIIjPfU,96417
19
+ lavavu_osmesa.libs/libavutil-fe3e056a.so.59.28.100,sha256=8X1JfMTflCGgJXcDUKL_WN4cyi22q1Z0FYYc-8ueZgc,1001001
20
+ lavavu_osmesa.libs/libswscale-d65e5891.so.8.2.100,sha256=C-MsUd8yJuEVR5as_wjQUS49Qjs2w1LsTO5x1_jKD5o,619921
21
+ lavavu_osmesa.libs/libx264-3daadd71.so.164,sha256=1AiHi-PoYrS70fP_NvC9HYuEKWhqPr5wVP81HJCB32E,2431745
22
+ lavavu_osmesa.libs/libjpeg-da649728.so.62.2.0,sha256=IoO1YzjSjixVQSs5SiWK95E-RREenSFc2B97tb-x_5E,437961
23
+ lavavu_osmesa.libs/libtinfo-a91ae06d.so.6.1,sha256=ylcRm-p3vHbtqqnOK25Yg166VdRjXdG7wt055cEqshY,194041
24
+ lavavu_osmesa.libs/libswresample-1fd124bd.so.5.2.100,sha256=sVpZLMPa83wGUyFFiB7RoWljLZZrks-4T0rVFyAS9Ag,128265
25
+ lavavu_osmesa.libs/libselinux-64a010fa.so.1,sha256=dNJwuKqYp8fwkmrQ9hom3hVQ-lYUkNxxHb4vmrk8zmE,195097
26
+ lavavu/lavavu.py,sha256=wTa9yyjDRdqdsmJbIEkj0vyrd0_ZElFbPg6_sjn8vd0,201960
2
27
  lavavu/LavaVuPython.py,sha256=Ki8G9XYHkyfqmxG6BohDWomvSn5eJwG9cHqGzEhZDDs,33131
28
+ lavavu/font.bin,sha256=fvi5zkvmq6gh9v3jXedBVuxNJWKmHtbjECzv6eT9wb4,225360
29
+ lavavu/__init__.py,sha256=JroZQiUbuVN7ifixk2zNDGlyLGaM8bqfRbw4D_F9qIQ,191
30
+ lavavu/vutils.py,sha256=L5TpyGlRHThhGChzaKhB70NQd75o3ctyKhSqZTsxceg,5624
31
+ lavavu/_LavaVuPython.cpython-311-x86_64-linux-gnu.so,sha256=iyzES7wmicgVL6fHaaOfQEIWZr_-rYyElfjs6PhABws,75915401
3
32
  lavavu/tracers.py,sha256=0dB6v9Jg5G-IeZxiVFvbPoTycGvyAQBtgyEAZUmq4XU,4257
4
- 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
33
+ lavavu/control.py,sha256=eNocZPc-2Dz-nSty_KRz_9RzLvbU0clJGuAV3qnzxbU,65841
7
34
  lavavu/server.py,sha256=L-_yPCbNfwYxJCPjDQtr_lxPnDp4oMNVFyxXhBERYrQ,12468
8
35
  lavavu/__main__.py,sha256=EbDetijCjyoiNxmExqnDGoRVs996tSVave5DML9zuMY,235
9
- lavavu/amalgamate.py,sha256=Xloq1IZ4VUvYiROzQtwKcQIWC65c7EZrdiGVhZdolL8,586
10
- lavavu/font.bin,sha256=fvi5zkvmq6gh9v3jXedBVuxNJWKmHtbjECzv6eT9wb4,225360
36
+ lavavu/dict.json,sha256=Zb1QnJOsx2DK3M1tRSXRUQ5PjEpOo3SMM3tTNHIKMPs,52722
11
37
  lavavu/convert.py,sha256=JT73q32YMchuSIkoH_A0cTUVwfns8fWLGjyWp2A5i5M,35514
12
- lavavu/__init__.py,sha256=JroZQiUbuVN7ifixk2zNDGlyLGaM8bqfRbw4D_F9qIQ,191
38
+ lavavu/amalgamate.py,sha256=Xloq1IZ4VUvYiROzQtwKcQIWC65c7EZrdiGVhZdolL8,586
39
+ lavavu/aserver.py,sha256=SfFvLeDTcx1XtS8fY_HIrDmh3q9HicCBRSAriY5yyOE,12003
13
40
  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
41
+ lavavu/shaders/triShader.vert,sha256=pJXftq7IiqiGe7NTMmuBUMDs4OZc9TD8lNJ4q-8B57Q,1120
42
+ lavavu/shaders/pointShader.vert,sha256=rnEa8PfIK3kFtFg04Ataf10aWsjEkh1URY2ipV1xTMY,1235
43
+ lavavu/shaders/default.frag,sha256=xCkYz8QriRlnAr-NtenZSIWI_liSxv9jz3Lp5immK9k,258
17
44
  lavavu/shaders/pointShader.frag,sha256=T1PA9Z6FiE66rS2sAmmFIbYM2VqEkLBycxV-sx3nACY,3384
18
- lavavu/shaders/volumeShader.frag,sha256=CIFSfwI8xVZ0ALme2QPMcXWl5yB55WCGnfJZ1Led6TU,16120
45
+ lavavu/shaders/fontShader.vert,sha256=yCBmRugaPUeUQUdIh62-AK_5KELiJqVS2M82iyIqPwo,290
19
46
  lavavu/shaders/lineShader.vert,sha256=6kJQcfu3eqaj910_KdaklVRvYxNbeu0ZbpDEOxRVde0,522
20
- 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
47
+ lavavu/shaders/lineShader.frag,sha256=aCmOWC20fHinR32p6LZPdCZP6abn-K1V2slbJ_5NoVA,945
23
48
  lavavu/shaders/fontShader.frag,sha256=DXAzO7kS36TBzYMJW0XqFiQQTTc4jFedGiUkLjelYKs,444
24
- lavavu/shaders/pointShader.vert,sha256=rnEa8PfIK3kFtFg04Ataf10aWsjEkh1URY2ipV1xTMY,1235
49
+ lavavu/shaders/triShader.frag,sha256=pG6eWiVgtHB8cSHyB8W3SHrc7-mLqaCRlZaHZfsEKhc,5007
25
50
  lavavu/shaders/default.vert,sha256=9J5Oqg8ns711fSNeQTtdA7ENb2sfonx0KGh1QfHp5Ws,317
26
- 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
29
- 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
32
- 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
51
+ lavavu/shaders/volumeShader.vert,sha256=uGdQjGqi7V5kE6V7nxymfugtU4cbf6u570xBy13RgmY,78
52
+ lavavu/shaders/volumeShader.frag,sha256=CIFSfwI8xVZ0ALme2QPMcXWl5yB55WCGnfJZ1Led6TU,16120
53
+ lavavu/html/baseviewer.js,sha256=u3UhC1At6rMBKmcQ7d2DXTRxQ20wsQkc4lqA-7sL7i4,9567
35
54
  lavavu/html/draw.js,sha256=57LlHlYRh0IvWVwzGDnF6PaCxYLzokpokLNCuZlG1ds,84108
55
+ lavavu/html/gl-matrix-min.js,sha256=qfhP_dWP2bTSL1ibMX2IYw7KDXBW2IhgpfhvU9kKjhM,23143
56
+ lavavu/html/webview-template.html,sha256=Mh9sOd6YEOiwJa_fPwyY4s9AdCuvsaHKLwVipVk_4Go,1530
57
+ lavavu/html/emscripten-template.js,sha256=h63mzl3Lv7aQT1wMOiOucPOvHTJjpKkzsL-SFVYaZlA,6135
36
58
  lavavu/html/styles.css,sha256=68pH0fWIc0mP1puFbsIg0ET9G1ujd40Aiqfx4phuzjs,2983
37
- lavavu/html/OK-min.js,sha256=-4Gc1-dWfxP_w6r9ZOHa8u-X2BlGUoSQbX68lwCxQ3E,39115
59
+ lavavu/html/control.js,sha256=Gi3eszKip1JsrM1HrMvSJWjqFZql6DPXdMUkU6Zuj7Q,11466
38
60
  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
61
+ lavavu/html/emscripten.css,sha256=wkaIJhXaxuMchinQX9Z8c12cJomyvFQMeIZ62WGQEPQ,1813
62
+ lavavu/html/OK-min.js,sha256=-4Gc1-dWfxP_w6r9ZOHa8u-X2BlGUoSQbX68lwCxQ3E,39115
63
+ lavavu/html/drawbox.js,sha256=SJxFSmWd7QVFI5__66hFkKzLKeqg1JPcx-gJuqdMkXw,34590
41
64
  lavavu/html/favicon.ico,sha256=OrIWwvxOSnOCuynrGRUyEIVQng0ZwA9Rrz89S9eiog0,1150
65
+ lavavu/html/server.js,sha256=b5eNlWWbiEk90n3WARJ1Mh7lmfHM0pOtZfrrmM-wfyc,7099
42
66
  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
67
+ lavavu/html/webview.html,sha256=T3AQXMNZwPWpWfdrBe6hjUyZh98_ds15SBjZc1Y-KwY,1522
45
68
  lavavu/html/dat.gui.min.js,sha256=S4_QjoXe4IOpU0f0Sj5jEQLTWPoX9uRl1ohB91jyhuw,56992
69
+ lavavu/html/control.css,sha256=PVLwmle00ciEckUV5ZIRmI3Whxhl7-mlVexnyyxoU70,3259
46
70
  lavavu/html/LavaVu-amalgamated.css,sha256=iE2xrxFcwmY0AcASrXxNa_RpvFEbS_YO4H5OILbPteE,8640
47
- 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
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
64
- 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
67
- 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
71
+ lavavu/html/gui.css,sha256=PRDLsYwM6cgLC9zZsEAG0dnnSd-HYH6oSEfsdEBkuxk,582
72
+ lavavu/html/menu.js,sha256=WCli3UYcQ7frjNq0aAXNALu33iNiN8lpTYwKZ7pUcn4,21501
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (70.3.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