Trait vox_geometry_rust::point_neighbor_searcher3::ForEachNearbyPointFunc[][src]

pub trait ForEachNearbyPointFunc: FnMut(usize, &Vector3D) { }
Expand description

Callback function for nearby search query. The first parameter is the index of the nearby point, and the second is the position of the point.

Implementors

impl<Super: FnMut(usize, &Vector3D)> ForEachNearbyPointFunc for Super[src]