pyvista.DataSet.find_cells_within_bounds#
- DataSet.find_cells_within_bounds(
- bounds: pyvista.BoundsLike,
Find the index of cells in this mesh within bounds.
- Parameters:
- Returns:
numpy.ndarray
Index 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] ... )