S simple class that holds two integers representing a point in 2D space.
S simple class that holds two integers representing a point in 2D space. It also has a number of functions and overloaded operators for manipulating point objects.
Examples:
Point a(10, 20);
Point b(30, 40);
Point c = a + b; c = (40, 60)
Point d = b - a; d = (20, 20)
c += a; c = (50, 80)
c -= b; c = (20, 40)
Alphabetic index Hierarchy of classes