Yesterday’s generative art piece, called “Circlecells” (these names are amazing, I know):
Detail:
The code is on GitHub. I also posted a few process pics to Twitter yesterday. There are also three other accompanying pieces in the set generated with different seeds: 02, 03, 04.
Explanation:
There’s a 20×20 grid which gets populated with an initial seed population of living/dead cells. (I get a random value between 0 and 5; if it’s 0 or 1, the cell is alive.)
The lines are drawn from any living cells to any immediately neighboring living cells.
The size of each circle is dependent on how many living neighbors the cell has.
The initial round is drawn in light tan, then the grid is run through a modified Conway’s Game of Life (any cells with 2, 3, or 5 living neighbors are alive in the next round).
Two more iterated rounds are drawn, one in a slightly darker tan and the last in dark red. (Drawing is done with the multiply blending mode.)
I textured the piece in Photoshop afterwards, using some Kyle T. Webster brushes — add canvas, add noise, encaustic grit, a couple others that I can’t remember.
I’ve ported my Latin declensions chart to PlotDevice (from InDesign) and posted the source to GitHub. It’s now fairly easy to change the order of the cases and add new ones like the vocative. The chart itself is slightly different as well — spacing, colors, etc.
I’ve wanted to put the Thai alphabet up on our wall so my kids can start learning it, and I’ve learned a lot about design since I made the Thai script card (which was really just a touchup on an existing card design I received in the MTC), so I made a new Thai consonants chart:
This one adds the consonant class (low/medium/high) and colors the initial consonant transliteration so it’s clearer.
I made it in PlotDevice, using a setup very similar to the Latin conjugation charts — YAML data file with a script that turns it into a PDF.
I’m planning to make two companion charts later — one for vowels and one for the miscellaneous marks, numerals, tones, etc.
I’m currently serving as elders quorum president in my ward, which means home teaching changes every couple months or so. I’ve been bad about printing out slips because it took too long to make them (I don’t really like the default MLS style, so I was doing it by hand in Excel), but I finally buckled down and wrote a PlotDevice script that takes the assignments in easy-to-write YAML and outputs PDFs, one page per file (because I haven’t been able to get it to output to just a single PDF).
Here’s what it looks like, with dummy data:
The code is on GitHub. It’s somewhat messy right now, but it works.