pub trait IntersectionPoints<T> {
// Required method
fn intersects_points(&self, o: &T) -> [Option<Vect>; 2];
}
Expand description
Trait for implementing intersects_points method witch returns one oer two intersection points of two geometric objects