pub trait ClosestPoint<Other> {
    fn closest_point(&self, other: &Other) -> Point;
}
Expand description

Trait for finding the closest point to another object

Required methods

The closest point to another object

Implementors