Question: C++ Write the definition for a class named Vector 2D that stores information about a two-dimensional vector. The class should have methods to get and
Write the definition for a class named Vector 2D that stores information about a two-dimensional vector. The class should have methods to get and set the x component and the y component, where x and y are integers. Next, overload the * operator so that it returns the dot product of two vectors. The dot product of two-dimensional vectors A and B is equal to (A_x * B_x) + (A_y * B_y) Next, overload the > operators so that you can write the following code Vector2D v; cin >> v; cout >v1>>v2>>v3>>v4; cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
