- Point2 - Class in eecs2030.lab2
-
A simple class for representing points in 2D Cartesian
coordinates.
- Point2() - Constructor for class eecs2030.lab2.Point2
-
Create a point with coordinates (0, 0)
.
- Point2(double, double) - Constructor for class eecs2030.lab2.Point2
-
Create a point with coordinates (newX, newY)
.
- Point2(Point2) - Constructor for class eecs2030.lab2.Point2
-
Create a point with the same coordinates as other
.