pyvista.Plotter.shape#
- property Plotter.shape[source]#
Return the shape of the plotter.
- Returns:
tuple
[numpy.int32
,numpy.int32
]Shape of the plotter.
Examples
Return the plotter shape.
>>> import pyvista as pv >>> plotter = pv.Plotter(shape=(2, 2)) >>> plotter.shape (2, 2)