- Vector2 - Class in eecs2030.lab4
-
A class that represents two dimensional spatial vectors (a direction and a
magnitude).
- Vector2() - Constructor for class eecs2030.lab4.Vector2
-
Creates the vector (0.0, 0.0)
with name equal to the empty
string.
- Vector2(double, double) - Constructor for class eecs2030.lab4.Vector2
-
Creates the vector (x, y)
.
- Vector2(Vector2) - Constructor for class eecs2030.lab4.Vector2
-
Creates a vector with the same components as another vector.