Definition at line 436 of file funky.cpp.
436 {
437 for (int d = r; d >= 0; d--) {
438 for (
int i =
x - d; i <=
x + d; i++) {
441 leds[
XY(i,
y - d)].nscale8(dim);
442 }
443 for (
int i =
y - d; i <=
y + d; i++) {
445 leds[
XY(
x + d, i)].nscale8(dim);
446 }
447 for (
int i =
x + d; i >=
x - d; i--) {
450 leds[
XY(i,
y + d)].nscale8(dim);
451 }
452 for (
int i =
y + d; i >=
y - d; i--) {
454 leds[
XY(
x - d, i)].nscale8(dim);
455 }
456 }
457}
References leds, x, XY(), and y.
Referenced by AudioSpiral(), MSGEQtest2(), MSGEQtest5(), SlowMandala(), SlowMandala2(), and SlowMandala3().