That S Thing

You know the one...

this one

I was thinking about it earlier, and I noticed how it can be broken down into similar repeating parts:

the s, sliced

I wanted to generate a random pattern using the tiles, but I wanted it to be a bit more pleasing to the eye than just random, so I wrote up some rules for which tiles can come after which other tiles, based on the original layout:

tile | allowed below | allowed to the right

notice that if we only stick to the original layout, we can't make a repeating pattern because nothing is allowed to appear to the right of tile 4! Let's relax the rules a little bit to allow some horizontal repetition:

tile | allowed below | allowed to the right

Here's what that looks like

It's not bad! we get a little variation, but things always repeat horizontally. This is clear if you pick a tile and follow the "right" rules:

So I tweaked the rules a bit more, honestly just until it looked the right amount of "interesting"

tile | allowed below | allowed to the right

with this set of rules "the s" appears in the pattern, but not too often! just enough to be special.