pub struct KDTree<P: PointTrait> { /* private fields */ }Implementations§
source§impl<P: PointTrait> KDTree<P>
impl<P: PointTrait> KDTree<P>
pub fn insert(&mut self, pos: P) -> Result<(), KrakelError>
pub fn nearest(&self, pos: &P) -> Option<P>
pub fn range_query<Q: PointTrait<PScalar = P::PScalar>>( &self, pos: &Q, radius: P::PScalar ) -> Vec<P>
pub fn closure_range_query<Q: PointTrait<PScalar = P::PScalar>, F>( &self, pos: &Q, radius: P::PScalar, process: F )
Trait Implementations§
source§impl<P: PointTrait> Debug for KDTree<P>
impl<P: PointTrait> Debug for KDTree<P>
Auto Trait Implementations§
impl<P> RefUnwindSafe for KDTree<P>where
P: RefUnwindSafe,
impl<P> Send for KDTree<P>where
P: Send,
impl<P> Sync for KDTree<P>where
P: Sync,
impl<P> Unpin for KDTree<P>where
P: Unpin,
impl<P> UnwindSafe for KDTree<P>where
P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more