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

◆ operator=() [2/8]

CRGBPalette32 & CRGBPalette32::operator= ( const CHSVPalette32 & rhs)
inline

Create palette from CHSV palette.

Definition at line 1499 of file colorutils.h.

1500 {
1501 for( uint8_t i = 0; i < 32; ++i) {
1502 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1503 }
1504 return *this;
1505 }
CHSV entries[32]
the color entries that make up the palette
CRGB entries[32]
the color entries that make up the palette

References CRGBPalette32(), CHSVPalette32::entries, and entries.

+ Here is the call graph for this function: