| 40 | return {a.x - b.x, a.y - b.y, a.z - b.z}; |
| 41 | } |
| 42 | inline float3 operator*(const float3 & v, float s) |
| 43 | { |
| 44 | return {v.x * s, v.y * s, v.z * s}; |
| 45 | } |
| 46 | |
| 47 | inline float3 operator*(float s, const float3 & v) |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected