discretize.base.BaseTensorMesh.is_inside#
- BaseTensorMesh.is_inside(pts, location_type='nodes', **kwargs)[source]#
Determine which points lie within the mesh.
For an arbitrary set of points, is_indside returns a boolean array identifying which points lie within the mesh.
- Parameters:
- pts(
n_pts,dim)numpy.ndarray Locations of input points. Must have same dimension as the mesh.
- location_type
str,optional Use N to determine points lying within the cluster of mesh nodes. Use CC to determine points lying within the cluster of mesh cell centers.
- pts(
- Returns:
- (
n_pts)numpy.ndarrayofbool Boolean array identifying points which lie within the mesh
- (