inline Point(); inline explicit Point(T value); inline Point(T x2, T y2); inline Point(const Point<T> & pt);
Point class constructors initialize the new instance of the point with the specified coordinates. If no parameters are passed, the x and y values are undefined.