inline T Dot(T x2, T y2) const; inline T Dot(const Point<T> & pt) const;
Dot returns the dot product of two points using the equation:
x * x2 + y * y2
A value containing the dot product.