Mar252011
0 Comments
The Second part of creating a Vector Class. This is where all the magic happens! #ifndef POINT_H #define POINT_H #include <iostream> #include <math.h> #include “Point.h” using namespace std; //—————– //VECTOR CLASS //—————– class Vector : public Point { public: Vector(float fX = 0.0, float fY…





