MCPcopy Create free account
hub / github.com/FastLED/FastLED / getMax

Method getMax

src/fl/math/geometry.h:155–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153 }
154
155 vec3 getMax(const vec3 &p) const FL_NOEXCEPT {
156 return vec3(fl::max(x, p.x), fl::max(y, p.y), fl::max(z, p.z));
157 }
158
159 vec3 getMin(const vec3 &p) const FL_NOEXCEPT {
160 return vec3(fl::min(x, p.x), fl::min(y, p.y), fl::min(z, p.z));

Callers

nothing calls this directly

Calls 2

maxFunction · 0.85
vec3Class · 0.70

Tested by

no test coverage detected