pyvista.Plotter.bounds#
- property Plotter.bounds: Tuple[float | int | number, float | int | number, float | int | number, float | int | number, float | int | number, float | int | number][source]#
Return the bounds of the active renderer.
Examples
>>> import pyvista >>> pl = pyvista.Plotter() >>> _ = pl.add_mesh(pyvista.Cube()) >>> pl.bounds (-0.5, 0.5, -0.5, 0.5, -0.5, 0.5)