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

◆ operator=() [2/6]

CRGBPalette16 & CRGBPalette16::operator= ( const CHSVPalette16 & rhs)
inline

Create palette from CHSV palette.

Definition at line 1061 of file colorutils.h.

1062 {
1063 for( uint8_t i = 0; i < 16; ++i) {
1064 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1065 }
1066 return *this;
1067 }
CHSV entries[16]
the color entries that make up the palette
Definition colorutils.h:729
CRGB entries[16]
the color entries that make up the palette

References CRGBPalette16(), CHSVPalette16::entries, and entries.

+ Here is the call graph for this function: