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

◆ CRGBPalette256() [5/17]

CRGBPalette256::CRGBPalette256 ( const CHSVPalette256 & rhs)
inline

Create palette from CHSV palette.

Definition at line 1791 of file colorutils.h.

1792 {
1793 for( int i = 0; i < 256; ++i) {
1794 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1795 }
1796 }
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 CHSVPalette256::entries, and entries.