pyvista.RectilinearGrid.dimensions#

property RectilinearGrid.dimensions: Tuple[int, int, int][source]#

Return the grid’s dimensions.

These are effectively the number of points along each of the three dataset axes.

Returns:
tuple[int]

Dimensions of the grid.

Examples

Create a uniform grid with dimensions (1, 2, 3).

>>> import pyvista
>>> grid = pyvista.ImageData(dimensions=(2, 3, 4))
>>> grid.dimensions
(2, 3, 4)
>>> grid.plot(show_edges=True)
https://d33wubrfki0l68.cloudfront.net/8208dfa288d2835e13cdbad5aa7d8b6cc140d088/cba13/_images/pyvista-rectilineargrid-dimensions-1_00_00.png

Set the dimensions to (3, 4, 5)

>>> grid.dimensions = (3, 4, 5)
>>> grid.plot(show_edges=True)
https://d33wubrfki0l68.cloudfront.net/261a0362d57c6f2fa472132dbd359ba05e6769b6/5f94c/_images/pyvista-rectilineargrid-dimensions-1_01_00.png