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

◆ at() [1/2]

Tile2x2_u8_wrap::Entry & fl::Tile2x2_u8_wrap::at ( u16 x,
u16 y )

Definition at line 65 of file tile2x2.cpp.

65 {
66 // Wrap around the edges
67 x = (x + 2) % 2;
68 y = (y + 2) % 2;
69 return mData[y][x];
70}
int y
Definition simple.h:93
int x
Definition simple.h:92

References mData, x, and y.

Referenced by Tile2x2_u8_wrap(), Tile2x2_u8_wrap(), fl::string::append(), draw(), fl::Corkscrew::draw(), Interpolate(), loop(), and fl::Corkscrew::readFromMulti().

+ Here is the caller graph for this function: