Trait rust_3d::traits::IsSphereSearchable [] [src]

pub trait IsSphereSearchable<T> {
    fn in_sphere(&self, sphere: &Sphere) -> Vec<T>;
}

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

Required Methods

Should return all elements within a sphere

Implementors