Expand description
Create deep (3D) cellular automata. This module exists to help you create 3D (aka flat) cellular automata.
To start, you’ll want to decide on your rules and create an AutomataRules object containing them.
let rules = AutomataRules::new(Rule::Single(4), Rule::Single(4), 5, Method::Moore);