unary operators
| 66 | |
| 67 | // unary operators |
| 68 | vec4<T> operator +() const { return vec4<T>(+x, +y, +z, +w); } |
| 69 | vec4<T> operator -() const { return vec4<T>(-x, -y, -z, -w); } |
| 70 | |
| 71 | // binary operators, multiply and divide operations for scalar |
nothing calls this directly
no outgoing calls
no test coverage detected