| 104 | class vector3 { |
| 105 | public: |
| 106 | vector3() : x(0), y(0), z(0) { |
| 107 | } |
| 108 | vector3(float x, float y, float z) : x(x), y(y), z(z) { |
| 109 | } |
| 110 | vector3(const vector2& _vector2, float z) : x(_vector2.x), y(_vector2.y), z(z) { |
nothing calls this directly
no outgoing calls
no test coverage detected