| 385 | |
| 386 | template<class T> |
| 387 | inline vec3i floor(const vec3<T> &f) { |
| 388 | return vec3i(floor(f.x), floor(f.y), floor(f.z)); |
| 389 | } |
| 390 | |
| 391 | template<class T> |
| 392 | inline vec3<T> abs(const vec3<T> &p) { |
nothing calls this directly
no outgoing calls
no test coverage detected