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

Function exp

utils/cpp_utils/include/vec3.h:412–414  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

410
411 template<class T>
412 inline vec3<T> exp(const vec3<T> &v) {
413 return vec3<T>(exp(v.x), exp(v.y), exp(v.z));
414 }
415
416 template<class T>
417 inline vec3<T> log(const vec3<T> &v) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected