Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active September 30, 2016 14:08
(ns cellular-animation.rules)
(def rule-90
{[1 1 1] 0
[1 1 0] 1
[1 0 1] 0
[1 0 0] 1
[0 1 1] 1
[0 1 0] 0
[0 0 1] 1
[0 0 0] 0})
(def rule-30
{[1 1 1] 0
[1 1 0] 0
[1 0 1] 0
[1 0 0] 1
[0 1 1] 1
[0 1 0] 1
[0 0 1] 1
[0 0 0] 0})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment