pub trait IsSphereSearchable<T> {
// Required method
fn in_sphere(&self, sphere: &Sphere, result: &mut Vec<T>);
}
Expand description
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