Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ operator*
Method
operator*
src/fl/math/geometry.h:108–110 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
106
}
107
108
vec3 operator*(const vec3 &p) const FL_NOEXCEPT {
109
return vec3(x * p.x, y * p.y, z * p.z);
110
}
111
112
vec3 operator/(const vec3 &p) const FL_NOEXCEPT {
113
return vec3(x / p.x, y / p.y, z / p.z);
Callers
nothing calls this directly
Calls
1
vec3
Class · 0.70
Tested by
no test coverage detected