pyvista.Plotter.view_isometric#
- Plotter.view_isometric(negative=False, render=True)[source]#
Reset the camera to a default isometric view.
The view will show all the actors in the scene.
- Parameters:
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()