| 18 | class Vector3 : public ::Vector3 { |
| 19 | public: |
| 20 | constexpr Vector3(const ::Vector3& vec) : ::Vector3{vec.x, vec.y, vec.z} {} |
| 21 | |
| 22 | constexpr Vector3(float x = 0, float y = 0, float z = 0) : ::Vector3{x, y, z} {} |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected