inline Point<T> Center() const;
Center returns a point representing the center of the local rectangle. The following expression is used to determine the result:
Point((x2 + x1)/2, (y2 + y1)/2)
A Point representing the center of the local rectangle.
HCenter VCenter