vispy 0.9.5__cp38-cp38-win_amd64.whl → 0.14.0__cp38-cp38-win_amd64.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.
Potentially problematic release.
This version of vispy might be problematic. Click here for more details.
- vispy/app/backends/_glfw.py +2 -2
- vispy/app/backends/_pyglet.py +8 -2
- vispy/app/backends/_qt.py +88 -63
- vispy/app/backends/_wx.py +6 -1
- vispy/app/canvas.py +4 -2
- vispy/app/tests/test_canvas.py +52 -1
- vispy/app/tests/test_context.py +5 -3
- vispy/color/color_array.py +8 -1
- vispy/color/colormap.py +5 -25
- vispy/geometry/meshdata.py +76 -38
- vispy/geometry/rect.py +6 -0
- vispy/geometry/tests/test_meshdata.py +72 -0
- vispy/gloo/buffer.py +12 -0
- vispy/gloo/gl/_constants.py +9 -5
- vispy/gloo/gl/_es2.py +8 -4
- vispy/gloo/gl/_gl2.py +2 -3
- vispy/gloo/gl/_proxy.py +1 -1
- vispy/gloo/gl/_pyopengl2.py +12 -7
- vispy/gloo/gl/tests/test_names.py +3 -0
- vispy/gloo/glir.py +26 -13
- vispy/gloo/program.py +39 -22
- vispy/gloo/tests/test_program.py +9 -2
- vispy/gloo/tests/test_texture.py +19 -2
- vispy/gloo/texture.py +46 -16
- vispy/gloo/wrappers.py +4 -2
- vispy/glsl/build_spatial_filters.py +241 -293
- vispy/glsl/misc/spatial-filters.frag +1299 -254
- vispy/io/_data/spatial-filters.npy +0 -0
- vispy/io/datasets.py +2 -2
- vispy/io/image.py +1 -1
- vispy/io/stl.py +3 -3
- vispy/scene/cameras/base_camera.py +6 -2
- vispy/scene/cameras/panzoom.py +10 -14
- vispy/scene/cameras/perspective.py +6 -0
- vispy/scene/cameras/tests/test_cameras.py +27 -0
- vispy/scene/cameras/tests/test_perspective.py +37 -0
- vispy/scene/cameras/turntable.py +39 -23
- vispy/scene/canvas.py +9 -5
- vispy/scene/events.py +9 -0
- vispy/scene/node.py +19 -2
- vispy/scene/tests/test_canvas.py +30 -1
- vispy/scene/tests/test_visuals.py +113 -0
- vispy/scene/visuals.py +6 -1
- vispy/scene/widgets/viewbox.py +3 -2
- vispy/testing/_runners.py +6 -12
- vispy/testing/_testing.py +3 -4
- vispy/util/check_environment.py +4 -4
- vispy/util/gallery_scraper.py +50 -32
- vispy/util/tests/test_gallery_scraper.py +2 -0
- vispy/util/transforms.py +1 -1
- vispy/util/wrappers.py +1 -1
- vispy/version.py +2 -3
- vispy/visuals/__init__.py +2 -0
- vispy/visuals/_scalable_textures.py +20 -17
- vispy/visuals/collections/array_list.py +3 -3
- vispy/visuals/collections/base_collection.py +1 -1
- vispy/visuals/ellipse.py +1 -1
- vispy/visuals/filters/__init__.py +3 -2
- vispy/visuals/filters/base_filter.py +120 -0
- vispy/visuals/filters/clipping_planes.py +24 -12
- vispy/visuals/filters/markers.py +28 -0
- vispy/visuals/filters/mesh.py +61 -6
- vispy/visuals/filters/tests/test_primitive_picking_filters.py +70 -0
- vispy/visuals/graphs/graph.py +1 -1
- vispy/visuals/image.py +114 -26
- vispy/visuals/image_complex.py +130 -0
- vispy/visuals/instanced_mesh.py +152 -0
- vispy/visuals/isocurve.py +1 -1
- vispy/visuals/line/dash_atlas.py +46 -41
- vispy/visuals/line/line.py +2 -5
- vispy/visuals/markers.py +310 -384
- vispy/visuals/mesh.py +2 -2
- vispy/visuals/shaders/function.py +3 -0
- vispy/visuals/shaders/tests/test_function.py +6 -0
- vispy/visuals/tests/test_axis.py +2 -2
- vispy/visuals/tests/test_image.py +92 -2
- vispy/visuals/tests/test_image_complex.py +36 -0
- vispy/visuals/tests/test_instanced_mesh.py +50 -0
- vispy/visuals/tests/test_markers.py +6 -0
- vispy/visuals/tests/test_mesh.py +17 -0
- vispy/visuals/tests/test_text.py +11 -0
- vispy/visuals/tests/test_volume.py +218 -12
- vispy/visuals/text/_sdf_cpu.cp38-win_amd64.pyd +0 -0
- vispy/visuals/text/_sdf_cpu.pyx +21 -23
- vispy/visuals/text/text.py +9 -3
- vispy/visuals/tube.py +2 -2
- vispy/visuals/visual.py +144 -3
- vispy/visuals/volume.py +300 -131
- {vispy-0.9.5.dist-info → vispy-0.14.0.dist-info}/LICENSE.txt +1 -1
- {vispy-0.9.5.dist-info → vispy-0.14.0.dist-info}/METADATA +218 -198
- {vispy-0.9.5.dist-info → vispy-0.14.0.dist-info}/RECORD +93 -96
- {vispy-0.9.5.dist-info → vispy-0.14.0.dist-info}/WHEEL +1 -1
- vispy/glsl/antialias/__init__.py +0 -0
- vispy/glsl/arrowheads/__init__.py +0 -0
- vispy/glsl/arrows/__init__.py +0 -0
- vispy/glsl/collections/__init__.py +0 -0
- vispy/glsl/colormaps/__init__.py +0 -0
- vispy/glsl/lines/__init__.py +0 -0
- vispy/glsl/markers/__init__.py +0 -0
- vispy/glsl/math/__init__.py +0 -0
- vispy/glsl/misc/__init__.py +0 -0
- vispy/glsl/transforms/__init__.py +0 -0
- {vispy-0.9.5.dist-info → vispy-0.14.0.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ Vispy licensing terms
|
|
|
3
3
|
|
|
4
4
|
Vispy is licensed under the terms of the (new) BSD license:
|
|
5
5
|
|
|
6
|
-
Copyright (c) 2013-
|
|
6
|
+
Copyright (c) 2013-2023, Vispy Development Team. All rights reserved.
|
|
7
7
|
|
|
8
8
|
Redistribution and use in source and binary forms, with or without
|
|
9
9
|
modification, are permitted provided that the following conditions are met:
|
|
@@ -1,198 +1,218 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: vispy
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Interactive visualization in Python
|
|
5
|
-
Home-page: http://vispy.org
|
|
6
|
-
Download-URL: https://pypi.python.org/pypi/vispy
|
|
7
|
-
Author: Vispy contributors
|
|
8
|
-
Author-email: vispy@googlegroups.com
|
|
9
|
-
License:
|
|
10
|
-
Keywords: visualization,OpenGl,ES,medical,imaging,3D,plotting,numpy,bigdata,ipython,jupyter,widgets
|
|
11
|
-
Platform: any
|
|
12
|
-
Classifier: Development Status :: 3 - Alpha
|
|
13
|
-
Classifier: Intended Audience :: Science/Research
|
|
14
|
-
Classifier: Intended Audience :: Education
|
|
15
|
-
Classifier: Intended Audience :: Developers
|
|
16
|
-
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
17
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
18
|
-
Classifier: Operating System :: MacOS :: MacOS X
|
|
19
|
-
Classifier: Operating System :: Microsoft :: Windows
|
|
20
|
-
Classifier: Operating System :: POSIX
|
|
21
|
-
Classifier: Programming Language :: Python
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.
|
|
25
|
-
Classifier:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Provides-Extra:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Provides-Extra:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Provides-Extra:
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Provides-Extra:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Provides-Extra:
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
Provides-Extra:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Provides-Extra:
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
If you're in the
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
-
|
|
146
|
-
|
|
147
|
-
- **
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
The
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: vispy
|
|
3
|
+
Version: 0.14.0
|
|
4
|
+
Summary: Interactive visualization in Python
|
|
5
|
+
Home-page: http://vispy.org
|
|
6
|
+
Download-URL: https://pypi.python.org/pypi/vispy
|
|
7
|
+
Author: Vispy contributors
|
|
8
|
+
Author-email: vispy@googlegroups.com
|
|
9
|
+
License: BSD-3-Clause
|
|
10
|
+
Keywords: visualization,OpenGl,ES,medical,imaging,3D,plotting,numpy,bigdata,ipython,jupyter,widgets
|
|
11
|
+
Platform: any
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Intended Audience :: Education
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
17
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
18
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
19
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
20
|
+
Classifier: Operating System :: POSIX
|
|
21
|
+
Classifier: Programming Language :: Python
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
26
|
+
Classifier: Framework :: IPython
|
|
27
|
+
Provides: vispy
|
|
28
|
+
Requires-Python: >=3.8
|
|
29
|
+
Description-Content-Type: text/x-rst
|
|
30
|
+
License-File: LICENSE.txt
|
|
31
|
+
Requires-Dist: numpy
|
|
32
|
+
Requires-Dist: freetype-py
|
|
33
|
+
Requires-Dist: hsluv
|
|
34
|
+
Requires-Dist: kiwisolver
|
|
35
|
+
Requires-Dist: packaging
|
|
36
|
+
Provides-Extra: doc
|
|
37
|
+
Requires-Dist: pydata-sphinx-theme ; extra == 'doc'
|
|
38
|
+
Requires-Dist: numpydoc ; extra == 'doc'
|
|
39
|
+
Requires-Dist: sphinxcontrib-apidoc ; extra == 'doc'
|
|
40
|
+
Requires-Dist: sphinx-gallery ; extra == 'doc'
|
|
41
|
+
Requires-Dist: myst-parser ; extra == 'doc'
|
|
42
|
+
Requires-Dist: pillow ; extra == 'doc'
|
|
43
|
+
Requires-Dist: pytest ; extra == 'doc'
|
|
44
|
+
Requires-Dist: pyopengl ; extra == 'doc'
|
|
45
|
+
Provides-Extra: io
|
|
46
|
+
Requires-Dist: meshio ; extra == 'io'
|
|
47
|
+
Requires-Dist: Pillow ; extra == 'io'
|
|
48
|
+
Provides-Extra: ipython-static
|
|
49
|
+
Requires-Dist: ipython ; extra == 'ipython-static'
|
|
50
|
+
Provides-Extra: pyglet
|
|
51
|
+
Requires-Dist: pyglet >=1.2 ; extra == 'pyglet'
|
|
52
|
+
Provides-Extra: pyqt5
|
|
53
|
+
Requires-Dist: pyqt5 ; extra == 'pyqt5'
|
|
54
|
+
Provides-Extra: pyqt6
|
|
55
|
+
Requires-Dist: pyqt6 ; extra == 'pyqt6'
|
|
56
|
+
Provides-Extra: pyside
|
|
57
|
+
Requires-Dist: PySide ; extra == 'pyside'
|
|
58
|
+
Provides-Extra: pyside2
|
|
59
|
+
Requires-Dist: PySide2 ; extra == 'pyside2'
|
|
60
|
+
Provides-Extra: pyside6
|
|
61
|
+
Requires-Dist: PySide6 ; extra == 'pyside6'
|
|
62
|
+
Provides-Extra: sdl2
|
|
63
|
+
Requires-Dist: PySDL2 ; extra == 'sdl2'
|
|
64
|
+
Provides-Extra: tk
|
|
65
|
+
Requires-Dist: pyopengltk ; extra == 'tk'
|
|
66
|
+
Provides-Extra: wx
|
|
67
|
+
Requires-Dist: wxPython ; extra == 'wx'
|
|
68
|
+
|
|
69
|
+
VisPy: interactive scientific visualization in Python
|
|
70
|
+
-----------------------------------------------------
|
|
71
|
+
|
|
72
|
+
Main website: http://vispy.org
|
|
73
|
+
|
|
74
|
+
|Build Status| |Coverage Status| |Zenodo Link| |Contributor Covenant|
|
|
75
|
+
|
|
76
|
+
----
|
|
77
|
+
|
|
78
|
+
VisPy is a **high-performance interactive 2D/3D data visualization
|
|
79
|
+
library**. VisPy leverages the computational power of modern **Graphics
|
|
80
|
+
Processing Units (GPUs)** through the **OpenGL** library to display very
|
|
81
|
+
large datasets. Applications of VisPy include:
|
|
82
|
+
|
|
83
|
+
- High-quality interactive scientific plots with millions of points.
|
|
84
|
+
- Direct visualization of real-time data.
|
|
85
|
+
- Fast interactive visualization of 3D models (meshes, volume
|
|
86
|
+
rendering).
|
|
87
|
+
- OpenGL visualization demos.
|
|
88
|
+
- Scientific GUIs with fast, scalable visualization widgets (`Qt <http://www.qt.io>`__ or
|
|
89
|
+
`IPython notebook <http://ipython.org/notebook.html>`__ with WebGL).
|
|
90
|
+
|
|
91
|
+
Releases
|
|
92
|
+
--------
|
|
93
|
+
|
|
94
|
+
See `CHANGELOG.md <./CHANGELOG.md>`_.
|
|
95
|
+
|
|
96
|
+
Announcements
|
|
97
|
+
-------------
|
|
98
|
+
|
|
99
|
+
See the `VisPy Website <https://vispy.org/news.html>`_.
|
|
100
|
+
|
|
101
|
+
Using VisPy
|
|
102
|
+
-----------
|
|
103
|
+
|
|
104
|
+
VisPy is a young library under heavy development at this time. It
|
|
105
|
+
targets two categories of users:
|
|
106
|
+
|
|
107
|
+
1. **Users knowing OpenGL**, or willing to learn OpenGL, who want to
|
|
108
|
+
create beautiful and fast interactive 2D/3D visualizations in Python
|
|
109
|
+
as easily as possible.
|
|
110
|
+
2. **Scientists without any knowledge of OpenGL**, who are seeking a
|
|
111
|
+
high-level, high-performance plotting toolkit.
|
|
112
|
+
|
|
113
|
+
If you're in the first category, you can already start using VisPy.
|
|
114
|
+
VisPy offers a Pythonic, NumPy-aware, user-friendly interface for OpenGL
|
|
115
|
+
ES 2.0 called **gloo**. You can focus on writing your GLSL code instead
|
|
116
|
+
of dealing with the complicated OpenGL API - VisPy takes care of that
|
|
117
|
+
automatically for you.
|
|
118
|
+
|
|
119
|
+
If you're in the second category, we're starting to build experimental
|
|
120
|
+
high-level plotting interfaces. Notably, VisPy now ships a very basic
|
|
121
|
+
and experimental OpenGL backend for matplotlib.
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Installation
|
|
125
|
+
------------
|
|
126
|
+
|
|
127
|
+
Please follow the detailed
|
|
128
|
+
`installation instructions <http://vispy.org/installation.html>`_
|
|
129
|
+
on the VisPy website.
|
|
130
|
+
|
|
131
|
+
Structure of VisPy
|
|
132
|
+
------------------
|
|
133
|
+
|
|
134
|
+
Currently, the main subpackages are:
|
|
135
|
+
|
|
136
|
+
- **app**: integrates an event system and offers a unified interface on
|
|
137
|
+
top of many window backends (Qt4, wx, glfw, jupyter notebook,
|
|
138
|
+
and others). Relatively stable API.
|
|
139
|
+
- **gloo**: a Pythonic, object-oriented interface to OpenGL. Relatively
|
|
140
|
+
stable API.
|
|
141
|
+
- **scene**: this is the system underlying our upcoming high level
|
|
142
|
+
visualization interfaces. Under heavy development and still
|
|
143
|
+
experimental, it contains several modules.
|
|
144
|
+
|
|
145
|
+
- **Visuals** are graphical abstractions representing 2D shapes, 3D
|
|
146
|
+
meshes, text, etc.
|
|
147
|
+
- **Transforms** implement 2D/3D transformations implemented on both
|
|
148
|
+
CPU and GPU.
|
|
149
|
+
- **Shaders** implements a shader composition system for plumbing
|
|
150
|
+
together snippets of GLSL code.
|
|
151
|
+
- The **scene graph** tracks all objects within a transformation
|
|
152
|
+
graph.
|
|
153
|
+
- **plot**: high-level plotting interfaces.
|
|
154
|
+
|
|
155
|
+
The API of all public interfaces are subject to change in the future,
|
|
156
|
+
although **app** and **gloo** are *relatively* stable at this point.
|
|
157
|
+
|
|
158
|
+
Code of Conduct
|
|
159
|
+
---------------
|
|
160
|
+
|
|
161
|
+
The VisPy community requires its members to abide by the
|
|
162
|
+
`Code of Conduct <./CODE_OF_CONDUCT.md>`_. In this CoC you will find the
|
|
163
|
+
expectations of members, the penalties for violating these expectations, and
|
|
164
|
+
how violations can be reported to the members of the community in charge of
|
|
165
|
+
enforcing this Code of Conduct.
|
|
166
|
+
|
|
167
|
+
Governance
|
|
168
|
+
----------
|
|
169
|
+
|
|
170
|
+
The VisPy project maintainers make decisions about the project based on a
|
|
171
|
+
simple consensus model. This is described in more detail on the
|
|
172
|
+
`governance page <https://vispy.org/governance/GOVERNANCE.html>`_ of the vispy
|
|
173
|
+
website as well as the
|
|
174
|
+
`list of maintainers <https://vispy.org/governance/MAINTAINERS.html>`_.
|
|
175
|
+
|
|
176
|
+
In addition to decisions about the VisPy project, there is also a steering
|
|
177
|
+
committee for the overall VisPy organization. More information about this
|
|
178
|
+
committee can also be found on the `steering committee page <https://vispy.org/org/STEERING-COMMITTEE.html>`_
|
|
179
|
+
of the vispy website,
|
|
180
|
+
along with the organization's `charter <https://vispy.org/org/CHARTER.html>`_ and
|
|
181
|
+
other related documents (linked in the charter).
|
|
182
|
+
|
|
183
|
+
Genesis
|
|
184
|
+
-------
|
|
185
|
+
|
|
186
|
+
VisPy began when four developers with their own visualization libraries
|
|
187
|
+
decided to team up:
|
|
188
|
+
`Luke Campagnola <http://luke.campagnola.me/>`__ with `PyQtGraph <http://www.pyqtgraph.org/>`__,
|
|
189
|
+
`Almar Klein <http://www.almarklein.org/>`__ with `Visvis <https://github.com/almarklein/visvis>`__,
|
|
190
|
+
`Cyrille Rossant <http://cyrille.rossant.net>`__ with `Galry <https://github.com/rossant/galry>`__,
|
|
191
|
+
`Nicolas Rougier <http://www.loria.fr/~rougier/index.html>`__ with `Glumpy <https://github.com/rougier/Glumpy>`__.
|
|
192
|
+
|
|
193
|
+
Now VisPy looks to build on the expertise of these developers and the
|
|
194
|
+
broader open-source community to build a high-performance OpenGL library.
|
|
195
|
+
|
|
196
|
+
----
|
|
197
|
+
|
|
198
|
+
External links
|
|
199
|
+
--------------
|
|
200
|
+
|
|
201
|
+
- `User mailing
|
|
202
|
+
list <https://groups.google.com/forum/#!forum/vispy>`__
|
|
203
|
+
- `Dev mailing
|
|
204
|
+
list <https://groups.google.com/forum/#!forum/vispy-dev>`__
|
|
205
|
+
- `Chat room <https://gitter.im/vispy/vispy>`__
|
|
206
|
+
- `Developer chat room <https://gitter.im/vispy/vispy-dev>`__
|
|
207
|
+
- `Wiki <http://github.com/vispy/vispy/wiki>`__
|
|
208
|
+
- `Gallery <http://vispy.org/gallery.html>`__
|
|
209
|
+
- `Documentation <http://vispy.readthedocs.org>`__
|
|
210
|
+
|
|
211
|
+
.. |Build Status| image:: https://github.com/vispy/vispy/workflows/CI/badge.svg
|
|
212
|
+
:target: https://github.com/vispy/vispy/actions
|
|
213
|
+
.. |Coverage Status| image:: https://img.shields.io/coveralls/vispy/vispy/main.svg
|
|
214
|
+
:target: https://coveralls.io/r/vispy/vispy?branch=main
|
|
215
|
+
.. |Zenodo Link| image:: https://zenodo.org/badge/5822/vispy/vispy.svg
|
|
216
|
+
:target: http://dx.doi.org/10.5281/zenodo.17869
|
|
217
|
+
.. |Contributor Covenant| image:: https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg
|
|
218
|
+
:target: CODE_OF_CONDUCT.md
|