Trait rust_3d::traits::IsBox3DSearchable [] [src]

pub trait IsBox3DSearchable<T> {
    fn in_box(&self, box_3d: &Box3D) -> 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

Should return all elements within a box

Implementors