FastLED 3.9.15
Loading...
Searching...
No Matches

◆ blend() [2/4]

CHSV * fl::blend ( const CHSV * src1,
const CHSV * src2,
CHSV * dest,
uint16_t count,
fract8 amountOfsrc2,
TGradientDirectionCode directionCode )

Definition at line 139 of file colorutils.cpp.

140 {
141 for (uint16_t i = 0; i < count; ++i) {
142 dest[i] = blend(src1[i], src2[i], amountOfsrc2, directionCode);
143 }
144 return dest;
145}
CRGB blend(const CRGB &p1, const CRGB &p2, fract8 amountOfP2)

References blend().

+ Here is the call graph for this function: