| 26 | } |
| 27 | |
| 28 | inline float3 operator+(const float3 & a, const float3 & b) |
| 29 | { |
| 30 | return {a.x + b.x, a.y + b.y, a.z + b.z}; |
| 31 | } |
| 32 | |
| 33 | inline float3 operator-(const float3 & v) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected