| 10 | { |
| 11 | float x {0.f}, y {0.f}, z {0.f}; |
| 12 | float3(float x, float y, float z) : x(x), y(y), z(z) {}; |
| 13 | float3() = default; |
| 14 | float & operator[](int i) { return (&x)[i]; } |
| 15 | const float & operator[](int i) const { return (&x)[i]; } |
nothing calls this directly
no outgoing calls
no test coverage detected