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

◆ blur2d()

void fl::blur2d ( CRGB * leds,
uint8_t width,
uint8_t height,
fract8 blur_amount,
const XYMap & xymap )

Two-dimensional blur filter.

Spreads light to 8 XY neighbors.

  • 0 = no spread at all
  • 64 = moderate spreading
  • 172 = maximum smooth, even spreading
  • 173..255 = wider spreading, but increasing flicker

Total light is NOT entirely conserved, so many repeated calls to 'blur' will also result in the light fading, eventually all the way to black; this is by design so that it can be used to (slowly) clear the LEDs to black.

Parameters
ledsa pointer to the LED array to blur
widththe width of the matrix
heightthe height of the matrix
blur_amountthe amount of blur to apply

Definition at line 71 of file blur.cpp.

72 {
73 blurRows(leds, width, height, blur_amount, xymap);
74 blurColumns(leds, width, height, blur_amount, xymap);
75}
CRGB leds[NUM_LEDS]
Definition Apa102.ino:11
XYMap xymap(WIDTH, HEIGHT, SERPENTINE)
void blurColumns(CRGB *leds, uint8_t width, uint8_t height, fract8 blur_amount, const fl::XYMap &xymap)
Perform a blur1d() on every column of a rectangular matrix.
Definition blur.cpp:111
void blurRows(CRGB *leds, uint8_t width, uint8_t height, fract8 blur_amount, const fl::XYMap &xymap)
Perform a blur1d() on every row of a rectangular matrix.
Definition blur.cpp:83