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

Method operator/

src/fl/math/geometry.h:112–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110 }
111
112 vec3 operator/(const vec3 &p) const FL_NOEXCEPT {
113 return vec3(x / p.x, y / p.y, z / p.z);
114 }
115
116 template <typename NumberT> vec3 operator+(const NumberT &p) const FL_NOEXCEPT {
117 return vec3(x + p, y + p, z + p);

Callers

nothing calls this directly

Calls 1

vec3Class · 0.70

Tested by

no test coverage detected