I have a marquee that I made that I would like to do some

I have a marquee that I made that I would like to do some two dimensional effects with. I’m looking for code snippets that treat the x,y location of leds as an array that let you do effects on it. I’m still searching, but anything that jumps out at people from this description would be great. I have played with the XY code in the examples, but it’s designed for regular arrays, where this is irregular and really just a list of x,y locations…

Example effects I’m thinking of: filling up the array left to right in vertical lines, or similarly top to bottom. Fire effects that percolate upward. Water that flows over that fire and puts it out. And so on…

Have a look at this example from @Mark_Kriegsman . It’s mapping the shape of “sun glasses” to a matrix. You can probably do something similar.

And you can check out the RGB Shades Kickstarter project/code too.

This is great! I considered doing something like programmatically, but so much better to just encode it statically - speedwise.