| 420 | |
| 421 | template<class T> |
| 422 | inline vec3<T> max(const vec3<T> &p, T v) { |
| 423 | return vec3<T>( |
| 424 | std::max(p.x, v), |
| 425 | std::max(p.y, v), |
| 426 | std::max(p.z, v)); |
| 427 | } |
| 428 | |
| 429 | template<class T> |
| 430 | inline vec3<T> max(const vec3<T> &p, const vec3<T> &v) { |
no outgoing calls
no test coverage detected