| 50 | }; |
| 51 | |
| 52 | class Vector4 |
| 53 | { |
| 54 | public: |
| 55 | float x, y, z, w; |
| 56 | |
| 57 | Vector4(float _x = 0, float _y = 0, float _z = 0, float _w = 0); |
| 58 | ~Vector4(); |
| 59 | |
| 60 | Vector4& operator = (const Vector4 &rhs); |
| 61 | Vector4& operator += (const Vector4 &rhs); |
| 62 | Vector4 operator * (float rhs) const; |
| 63 | Vector4 operator / (float rhs) const; |
| 64 | Vector4 operator + (const Vector4 &rhs) const; |
| 65 | Vector4 operator - (const Vector4 &rhs) const; |
| 66 | }; |
| 67 | |
| 68 | #endif |
no outgoing calls
no test coverage detected