pyvista.Plotter.view_isometric#
- Plotter.view_isometric(negative=False, render=True, bounds=None)[source]#
Reset the camera to a default isometric view.
The view will show all the actors in the scene.
- Parameters:
- negativebool, default:
False
View from the other isometric direction.
- renderbool, default:
True
If the render window is being shown, trigger a render after setting the camera position.
- boundsiterable(
int
),optional
Automatically set up the camera based on a specified bounding box
(xmin, xmax, ymin, ymax, zmin, zmax)
.
- negativebool, default:
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()