pyvista.Plotter.shape#

property Plotter.shape: tuple[int] | tuple[int, int][source]#

Return the shape of the plotter.

Returns:
tuple[int] | tuple[int, int]

Shape of the plotter.

Examples

Return the plotter shape.

>>> import pyvista as pv
>>> plotter = pv.Plotter(shape=(2, 2))
>>> plotter.shape
(2, 2)
../../../_images/pyvista-Plotter-shape-1_00_00.png