| 410 | |
| 411 | template<class T> |
| 412 | inline vec3<T> exp(const vec3<T> &v) { |
| 413 | return vec3<T>(exp(v.x), exp(v.y), exp(v.z)); |
| 414 | } |
| 415 | |
| 416 | template<class T> |
| 417 | inline vec3<T> log(const vec3<T> &v) { |
nothing calls this directly
no outgoing calls
no test coverage detected