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

◆ maxValue()

u8 fl::Tile2x2_u8::maxValue ( ) const

Definition at line 102 of file tile2x2.cpp.

102 {
103 u8 max = 0;
104 max = MAX(max, at(0, 0));
105 max = MAX(max, at(0, 1));
106 max = MAX(max, at(1, 0));
107 max = MAX(max, at(1, 1));
108 return max;
109}
u8 & at(int x, int y)
Definition tile2x2.h:39
#define MAX(a, b)
Definition math_macros.h:37
unsigned char u8
Definition int.h:17

References at(), and MAX.

+ Here is the call graph for this function: