| 436 | |
| 437 | template<class T> |
| 438 | inline vec3<T> min(const vec3<T> &p, T v) { |
| 439 | return vec3<T>( |
| 440 | std::min(p.x, v), |
| 441 | std::min(p.y, v), |
| 442 | std::min(p.z, v)); |
| 443 | } |
| 444 | |
| 445 | template<class T> |
| 446 | inline vec3<T> min(const vec3<T> &p, const vec3<T> &v) { |
no outgoing calls
no test coverage detected