pub trait Region<T> { // Required method fn contains(&self, x: T, y: T) -> bool; }
A geometrical representation of a set of 2D points with coordinate type T.
Whether this region contains the given point.