| 85 | friend vec3<T> operator *(const vec3<T>& lhs, T value) { return vec3<T>(lhs.x*value, lhs.y*value, lhs.z*value); } |
| 86 | friend vec3<T> operator *(T value, const vec3<T>& rhs) { return vec3<T>(rhs.x*value, rhs.y*value, rhs.z*value); } |
| 87 | friend vec3<T> operator /(const vec3<T>& lhs, T value) { return vec3<T>(lhs.x/value, lhs.y/value, lhs.z/value); } |
| 88 | |
| 89 | friend bool operator <(const vec3<T>& lhs, const vec3<T>& rhs) |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected