| 34 | }; |
| 35 | |
| 36 | class Vector3 |
| 37 | { |
| 38 | public: |
| 39 | float x, y, z; |
| 40 | |
| 41 | Vector3(float _x = 0, float _y = 0, float _z = 0); |
| 42 | ~Vector3(); |
| 43 | |
| 44 | Vector3& operator = (const Vector3 &rhs); |
| 45 | Vector3& operator += (const Vector3 &rhs); |
| 46 | Vector3 operator * (float rhs) const; |
| 47 | Vector3 operator / (float rhs) const; |
| 48 | Vector3 operator + (const Vector3 &rhs) const; |
| 49 | Vector3 operator - (const Vector3 &rhs) const; |
| 50 | }; |
| 51 | |
| 52 | class Vector4 |
| 53 | { |
no outgoing calls
no test coverage detected