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

◆ blur2d() [1/2]

void blur2d ( CRGB * leds,
uint8_t width,
uint8_t height,
fract8 blur_amount )

Definition at line 477 of file colorutils.cpp.

478{
479 XYMap xy = XYMap::constructWithUserFunction(width, height, xy_legacy_wrapper);
480 blur2d(leds, width, height, blur_amount, xy);
481}
CRGB leds[NUM_LEDS]
Definition Apa102.ino:11
unsigned int xy(unsigned int x, unsigned int y)
static XYMap constructWithUserFunction(uint16_t width, uint16_t height, XYFunction xyFunction, uint16_t offset=0)
Definition xymap.cpp:27
void blur2d(CRGB *leds, uint8_t width, uint8_t height, fract8 blur_amount, const XYMap &xymap)
Two-dimensional blur filter.

References blur2d(), fl::XYMap::constructWithUserFunction(), leds, and xy().

+ Here is the call graph for this function: