Module deep

Module deep 

Source
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);

Structs§

Automaton
The humble 3D cellular automaton.
Vec3
A position on a 3D grid, or the size of a 3D grid.