Trait IsBox3DSearchable

Source
pub trait IsBox3DSearchable<T> {
    // Required method
    fn in_box(&self, box_3d: &Box3D, result: &mut Vec<T>);
}
Expand description

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§

Source

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

Should return all elements within a box

Implementors§

Source§

impl<P> IsBox3DSearchable<P> for KdTree<P>
where P: Is3D + Clone,