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

◆ Pixels() [2/7]

fl::Pixels::Pixels ( const Pixels & rhs)
inline

Definition at line 144 of file ___pixeltypes.h.

144 {
145 _size = rhs._size;
146 _direction = rhs._direction;
147 _num_strips = rhs._num_strips;
148 for (int i = 0; i < _num_strips; i++) {
149 _sizes[i] = rhs._sizes[i];
150 }
151 ledpointer = rhs.ledpointer;
152 mapFunction = rhs.mapFunction;
153
154 // parent=rhs.parent;
155 }
Pixel * ledpointer
int(* mapFunction)(int i, void *args)
leddirection _direction
int _sizes[16]

References Pixels(), _direction, _num_strips, _size, _sizes, ledpointer, and mapFunction.

+ Here is the call graph for this function: