pyvista.DataSet.point_is_inside_cell#

DataSet.point_is_inside_cell(ind: int, point: ndarray[Any, dtype[number]] | Sequence[int | float] | Sequence[ndarray[Any, dtype[number]] | Sequence[int | float]]) int | ndarray[source]#

Return whether one or more points are inside a cell.

New in version 0.35.0.

Parameters:
indint

Cell ID.

pointMatrix

Point or points to query if are inside a cell.

Returns:
bool or numpy.ndarray

Whether point(s) is/are inside cell. A single bool is only returned if the input point has shape (3,).

Examples

>>> from pyvista import examples
>>> mesh = examples.load_hexbeam()
>>> mesh.get_cell(0).bounds
(0.0, 0.5, 0.0, 0.5, 0.0, 0.5)
>>> mesh.point_is_inside_cell(0, [0.2, 0.2, 0.2])
True