pyvista.DataSet.find_cells_within_bounds#
- DataSet.find_cells_within_bounds(bounds: BoundsTuple) NumpyArray[int][source]#
 Find the index of cells in this mesh within bounds.
- Parameters:
 - Returns:
 numpy.ndarrayIndex or indices of the cell in this mesh that are closest to the given point.
See also
Examples
>>> import pyvista as pv >>> mesh = pv.Cube() >>> index = mesh.find_cells_within_bounds([-2.0, 2.0, -2.0, 2.0, -2.0, 2.0])