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

Method getMin

src/fl/math/geometry.h:159–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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));
161 }
162
163 template <typename U> vec3<U> cast() const FL_NOEXCEPT {
164 return vec3<U>(static_cast<U>(x), static_cast<U>(y), static_cast<U>(z));

Callers

nothing calls this directly

Calls 1

vec3Class · 0.70

Tested by

no test coverage detected