view_isometric#
- Renderer.view_isometric(negative=False)[source]#
Reset the camera to a default isometric view.
The view will show all the actors in the scene.
- Parameters
- negativebool,
optional
View from the other isometric direction.
- negativebool,
Examples
Isometric view.
>>> from pyvista import demos >>> pl = demos.orientation_plotter() >>> pl.view_isometric() >>> pl.show()
Negative isometric view.
>>> from pyvista import demos >>> pl = demos.orientation_plotter() >>> pl.view_isometric(negative=True) >>> pl.show()