pyvista.Cell.bounds#

property Cell.bounds: Tuple[float, float, float, float, float, float][source]#

Get the cell bounds in [xmin, xmax, ymin, ymax, zmin, zmax].

Returns:
Tuple[float, float, float, float, float, float]

The cell bounds in [xmin, xmax, ymin, ymax, zmin, zmax].

Examples

>>> import pyvista as pv
>>> mesh = pv.Sphere()
>>> mesh.get_cell(0).bounds
(0.0, 0.05405950918793678, 0.0, 0.011239604093134403, 0.49706897139549255, 0.5)