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

Function pow

utils/cpp_utils/include/vec3.h:407–409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

405
406 template<class T>
407 inline vec3<T> pow(const vec3<T> &v, T e) {
408 return vec3<T>(pow(v.x, e), pow(v.y, e), pow(v.z, e));
409 }
410
411 template<class T>
412 inline vec3<T> exp(const vec3<T> &v) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected