Const
Generates elements like conway's game of life.
lifelike
needs to be able to call PixelManipulator.mooreNearbyCounter
The B/S syntax indicator of on how many cells of the same type in the moore radius around each pixel should survive, and on how many should be born.
Optional
loop: booleanShould this loop around screen edges? (Passed to renderers.Location.loop)
Generates fundamental cellular automata
wolfram
needs to be able to call PixelManipulator.wolframNearbyCounter
The Rule num syntax, where the 8-bit number is translated into a binary list, each where the inverted 3-binary-digit index represents the state of cells in the row above. On a match, the cell becomes the state specified in the initial 8-bit number.
Optional
loop: booleanShould this loop around screen edges? (Passed to PixelManipulator.wolframNearby)
Template generators for your elements.