MCPcopy Create free account
hub / github.com/RozDavid/UnScene3D / ceil

Function ceil

utils/cpp_utils/include/vec3.h:382–384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected