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

Function floor

utils/cpp_utils/include/vec3.h:387–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected