├── .gitignore ├── GSP ├── GSP.py ├── array.py ├── array_slice.py ├── array_view.py ├── canvas.py ├── datatype.py ├── example_1.py ├── test_array.py ├── test_canvas.py ├── test_datatype.py ├── test_datatype_numpy.py ├── test_tranform_colormap.py ├── test_tranform_matrix.py ├── test_viewport.py ├── transform.py ├── transform_colormap.py ├── transform_matrix.py ├── unit.py └── viewport.py ├── LICENSE ├── README.md ├── mpl-backend ├── backend.py ├── command.py ├── four-viewports.yaml ├── frontend.py ├── one-viewport.py ├── one-viewport.yaml ├── single-viewport.yaml └── two-viewports.yaml ├── poc_datoviz ├── backend_datoviz.py ├── backend_datoviz2.py └── example_vispy.py ├── poc_pygfx ├── backend_pygfx.py └── viz.yaml ├── research ├── example_scatter.yaml ├── example_transforms.yaml ├── graphics_libs.md ├── graphics_types.md ├── protocol.md ├── protocol2.md └── usecases.md ├── setup.py └── visp ├── __init__.py ├── _checker.py ├── _io.py ├── protocol.toml ├── protocol.yaml ├── protocol2.yaml └── tests └── test_io.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /GSP/GSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/GSP.py -------------------------------------------------------------------------------- /GSP/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/array.py -------------------------------------------------------------------------------- /GSP/array_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/array_slice.py -------------------------------------------------------------------------------- /GSP/array_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/array_view.py -------------------------------------------------------------------------------- /GSP/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/canvas.py -------------------------------------------------------------------------------- /GSP/datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/datatype.py -------------------------------------------------------------------------------- /GSP/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/example_1.py -------------------------------------------------------------------------------- /GSP/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_array.py -------------------------------------------------------------------------------- /GSP/test_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_canvas.py -------------------------------------------------------------------------------- /GSP/test_datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_datatype.py -------------------------------------------------------------------------------- /GSP/test_datatype_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_datatype_numpy.py -------------------------------------------------------------------------------- /GSP/test_tranform_colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_tranform_colormap.py -------------------------------------------------------------------------------- /GSP/test_tranform_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_tranform_matrix.py -------------------------------------------------------------------------------- /GSP/test_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/test_viewport.py -------------------------------------------------------------------------------- /GSP/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/transform.py -------------------------------------------------------------------------------- /GSP/transform_colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/transform_colormap.py -------------------------------------------------------------------------------- /GSP/transform_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/transform_matrix.py -------------------------------------------------------------------------------- /GSP/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/unit.py -------------------------------------------------------------------------------- /GSP/viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/GSP/viewport.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /mpl-backend/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/backend.py -------------------------------------------------------------------------------- /mpl-backend/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/command.py -------------------------------------------------------------------------------- /mpl-backend/four-viewports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/four-viewports.yaml -------------------------------------------------------------------------------- /mpl-backend/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/frontend.py -------------------------------------------------------------------------------- /mpl-backend/one-viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/one-viewport.py -------------------------------------------------------------------------------- /mpl-backend/one-viewport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/one-viewport.yaml -------------------------------------------------------------------------------- /mpl-backend/single-viewport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/single-viewport.yaml -------------------------------------------------------------------------------- /mpl-backend/two-viewports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/mpl-backend/two-viewports.yaml -------------------------------------------------------------------------------- /poc_datoviz/backend_datoviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/poc_datoviz/backend_datoviz.py -------------------------------------------------------------------------------- /poc_datoviz/backend_datoviz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/poc_datoviz/backend_datoviz2.py -------------------------------------------------------------------------------- /poc_datoviz/example_vispy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/poc_datoviz/example_vispy.py -------------------------------------------------------------------------------- /poc_pygfx/backend_pygfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/poc_pygfx/backend_pygfx.py -------------------------------------------------------------------------------- /poc_pygfx/viz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/poc_pygfx/viz.yaml -------------------------------------------------------------------------------- /research/example_scatter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/example_scatter.yaml -------------------------------------------------------------------------------- /research/example_transforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/example_transforms.yaml -------------------------------------------------------------------------------- /research/graphics_libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/graphics_libs.md -------------------------------------------------------------------------------- /research/graphics_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/graphics_types.md -------------------------------------------------------------------------------- /research/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/protocol.md -------------------------------------------------------------------------------- /research/protocol2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/protocol2.md -------------------------------------------------------------------------------- /research/usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/research/usecases.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/setup.py -------------------------------------------------------------------------------- /visp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/__init__.py -------------------------------------------------------------------------------- /visp/_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/_checker.py -------------------------------------------------------------------------------- /visp/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/_io.py -------------------------------------------------------------------------------- /visp/protocol.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/protocol.toml -------------------------------------------------------------------------------- /visp/protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/protocol.yaml -------------------------------------------------------------------------------- /visp/protocol2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/protocol2.yaml -------------------------------------------------------------------------------- /visp/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vispy/vispy2-sandbox/HEAD/visp/tests/test_io.py --------------------------------------------------------------------------------