Octarine is the eighth color of the Discworld's spectrum, which is described as the color of magic itself. Only wizards and cats can see it.
Octarine
A minimalist, easy-to-use, high-performance 3D viewer. Octarine
is build on top of the excellent
pygfx
WGPU rendering engine which does most of the heavy lifting - we're simply
abstracting away some of the boiler plate code for you.
Rationale :thought_balloon:
Why another 3D viewer? There are plenty options out there:
vedo
, ipygany
, polyscope
, napari
, fury
, plotly
or pyvista
to name but a few. All of these are great in their own right but I wanted something (a) without heavy dependencies (i.e. no VTK), (b) that lets me interactively explore my data in both REPL and Jupyter and (c) is very performant. None of the existing solutions ticked all those boxes for me.
Octarine
tries to fill that gap:
- Lightweight with very few direct or indirect dependencies.
- Works in both Jupyter and REPL.
- High performance: a mesh with 15M faces renders with 80 fps at 1080p on a 2023 MacBook Pro.
Installation :rocket:
pip install octarine3d[all]
This will install the minimal requirements plus PySide6
and jupyter_rfb
as window managers for IPython/shell
and Jupyter, respectively. Check out the Install Instructions
for details.
Status :ballot_box_with_check:
All basic components have been implemented but this is a very young project, which means that the API can still change with each version. We'd love for you to take it for a spin and let us know what you think though!
Quickstart :fire:
from octarine import Viewer
v = Viewer()
import numpy as np
points = np.random.rand(10, 3)
v.add(points)
v.clear()
import pygfx as gfx
m = gfx.geometries.mobius_strip_geometry()
v.add(m, color='b')
v.close()
[!NOTE]
The above example will work in interactive environments such as IPython and Jupyter. When using from the standard
REPL or when running as a script you will have to additionally start the event loop. Please see corresponding the
section in the Introduction.
Want to learn more?
Head over to the Documentation!
Want to contribute?
We welcome all kinds of contributions. For example:
- reports of bugs, broken examples, etc.
- feature requests
- pull requests with bug fixes or new features
If you already know what needs doing, feel free to open a pull request
right away. When in doubt please open an issue
so we can discuss the best way to address the issue.
Development :dash:
Tests
TODO
Docs
To generate the documentation:
pip install -e .[docs]
mkdocs build