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

Method operator/

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

Source from the content-addressed store, hash-verified

270 vec2 operator*(const vec2 &p) const FL_NOEXCEPT { return vec2(x * p.x, y * p.y); }
271
272 vec2 operator/(const vec2 &p) const FL_NOEXCEPT { return vec2(x / p.x, y / p.y); }
273
274 template <typename NumberT> vec2 operator+(const NumberT &p) const FL_NOEXCEPT {
275 return vec2(x + p, y + p);

Callers

nothing calls this directly

Calls 1

vec2Class · 0.70

Tested by

no test coverage detected