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

◆ operator=() [2/2]

ScreenMap & fl::ScreenMap::operator= ( ScreenMap && other)

Definition at line 588 of file screenmap.cpp.hpp.

588 {
589 if (this != &other) {
590 mDiameter = other.mDiameter;
591 length = other.length;
592 mLookUpTable = fl::move(other.mLookUpTable);
593 mSourceXYMap = fl::move(other.mSourceXYMap);
594 other.length = 0;
595 other.mDiameter = -1.0f;
596 }
597 return *this;
598}
float mDiameter
Definition screenmap.h:125
LUTXYFLOATPtr mLookUpTable
Definition screenmap.h:126
XYMapPtr mSourceXYMap
Definition screenmap.h:127
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition s16x16x4.h:28

References ScreenMap(), FL_NOEXCEPT, length, mDiameter, mLookUpTable, fl::fl::move(), and mSourceXYMap.

+ Here is the call graph for this function: