unary operators
| 76 | |
| 77 | // unary operators |
| 78 | vec3<T> operator +() const { return vec3<T>(+x, +y, +z); } |
| 79 | vec3<T> operator -() const { return vec3<T>(-x, -y, -z); } |
| 80 | |
| 81 | // binary operators, multiply and divide operations for scalar |
nothing calls this directly
no outgoing calls
no test coverage detected