| 321 | |
| 322 | template<class T> |
| 323 | inline vec3<T> operator+(T s, const vec3<T> &v) { |
| 324 | return v + s; |
| 325 | } |
| 326 | |
| 327 | template<class T> |
| 328 | inline vec3<T> operator-(T s, const vec3<T> &v) { |
nothing calls this directly
no outgoing calls
no test coverage detected