Expand description
A library that makes working with L-systems simple. Works
with char
s as predecessors and String
s as successors.
§Examples
use lsystems::LSystem;
let mut system = LSystem::with_axiom("b");
system.add_rule('a', "ab");
Structs§
- LSystem
- Represents a Lindenmayer system