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

◆ operator=()

XMap & fl::XMap::operator= ( const XMap & other)

Definition at line 106 of file xmap.cpp.

106 {
107 if (this != &other) {
108 type = other.type;
109 length = other.length;
110 xFunction = other.xFunction;
111 mData = other.mData;
112 mLookUpTable = other.mLookUpTable;
113 mOffset = other.mOffset;
114 }
115 return *this;
116}
uint16_t mOffset
Definition xmap.h:66
Type type
Definition xmap.h:62
const uint16_t * mData
Definition xmap.h:64
uint16_t length
Definition xmap.h:61
fl::LUT16Ptr mLookUpTable
Definition xmap.h:65
XFunction xFunction
Definition xmap.h:63

References XMap(), length, mData, mLookUpTable, mOffset, type, and xFunction.

+ Here is the call graph for this function: