| 380 | |
| 381 | template<class T> |
| 382 | inline vec3i ceil(const vec3<T> &f) { |
| 383 | return vec3i(ceil(f.x), ceil(f.y), ceil(f.z)); |
| 384 | } |
| 385 | |
| 386 | template<class T> |
| 387 | inline vec3i floor(const vec3<T> &f) { |
nothing calls this directly
no outgoing calls
no test coverage detected