Plotter.enable_stereo_render#
- Plotter.enable_stereo_render() None[source]#
Enable anaglyph stereo rendering.
Disable this with
disable_stereo_render
Examples#
Download Python source code | Download Jupyter notebook
Enable stereo rendering to show a cube as an anaglyph image.
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(pv.Cube())
>>> pl.enable_stereo_render()
>>> pl.show()