Question: This needs to be done in C++: 1) Create an array allVectors with 10 Vector2 objects (initialize them to random points between 0 and 1).
This needs to be done in C++:
1) Create an array "allVectors" with 10 Vector2 objects (initialize them to random points between 0 and 1). 2) Add a member function/method "NearestVector" to Vector2 for finding the nearest among a list of vectors:
Vector2 a(3,4); b = a.NearestVector(allVectors);
Note 1: (Mathematically speaking) assume the vectors start from origin, then each vector represents a point. Note 2: Use the Pythagorian the distance between two vectors (points).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
