pyvista.DataSet.point_is_inside_cell#
- DataSet.point_is_inside_cell( ) bool | NumpyArray[np.bool_] [source]#
Return whether one or more points are inside a cell.
Added in version 0.35.0.
- Parameters:
- ind
int
Cell ID.
- point
Matrix
Point or points to query if are inside a cell.
- ind
- 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,)
.
- bool or
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