[][src]Trait rust_3d::IsBox3DSearchable

pub trait IsBox3DSearchable<T> {
    fn in_box(&self, box_3d: &Box3D, result: &mut Vec<T>);
}

IsBox3DSearchable trait used for search structures which can be queried for elements within a 3D box You should only implement this, if your solution is rather efficient

Required methods

fn in_box(&self, box_3d: &Box3D, result: &mut Vec<T>)

Should return all elements within a box

Loading content...

Implementors

impl<P> IsBox3DSearchable<P> for KdTree<P> where
    P: Is3D + Clone
[src]

Loading content...