Grid.dimensions#
- property Grid.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.
Examples#
Download Python source code | Download Jupyter notebook
Create a uniform grid with dimensions (1, 2, 3).
>>> import pyvista as pv
>>> grid = pv.ImageData(dimensions=(2, 3, 4))
>>> grid.dimensions
(2, 3, 4)
>>> grid.plot(show_edges=True)
Set the dimensions to (3, 4, 5)
>>> grid.dimensions = (3, 4, 5)
>>> grid.plot(show_edges=True)
Used In#
Docstring Examples
ImageDataFilters.resample(5 uses)ImageDataFilters.concatenate(3 uses)ImageDataFilters.points_to_cells(3 uses)ImageDataFilters.crop(2 uses)ImageDataFilters.pad_image(2 uses)7 more
DataSetFilters.voxelize_binary_mask(1 use)ImageData.extent(1 use)ImageDataFilters.contour_labels(1 use)ImageDataFilters.slice_index(1 use)RectilinearGrid.dimensions(1 use)download_damavand_volcano(1 use)load_logo(1 use)
Gallery Examples