pub trait ContainsPoint { fn contains(&self, point: Point) -> bool; }
Trait to check if a point is inside a closed shape.
Returns true if the given point is inside the shape.
true