Neighbor search

Meshes.searchFunction
search(pₒ, method, mask=nothing)

Return neighbors of point pₒ using method. Optionally, specify a mask for all indices of the domain.

Meshes.BallSearchType
BallSearch(domain, ball)

A method for searching neighbors in domain inside ball.

Meshes.KNearestSearchType
KNearestSearch(domain, k; metric=Euclidean())

A method for searching k nearest neighbors in domain according to metric.

Meshes.KBallSearchType
KBallSearch(domain, k, ball)

A method that searches k nearest neighbors and then filters these neighbors using a norm ball.

Meshes.BoundedSearchType
BoundedSearch(method, nmax)

A method for searching at most nmax neighbors using method.