* @brief unary operators * @{ */
| 68 | * @{ |
| 69 | */ |
| 70 | inline vec2<T> operator +() const { return vec2<T>(+x, +y); } |
| 71 | inline vec2<T> operator -() const { return vec2<T>(-x, -y); } |
| 72 | /** @} */ |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected