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

◆ operator=() [2/7]

CRGBPalette256 & CRGBPalette256::operator= ( const CHSVPalette256 & rhs)
inline

Copy constructor.

Definition at line 1805 of file colorutils.h.

1806 {
1807 for( int i = 0; i < 256; ++i) {
1808 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1809 }
1810 return *this;
1811 }
CHSV entries[256]
the color entries that make up the palette
Definition colorutils.h:876
CRGB entries[256]
the color entries that make up the palette

References CRGBPalette256(), CHSVPalette256::entries, and entries.

+ Here is the call graph for this function: