Crate lsystems

Source
Expand description

A library that makes working with L-systems simple. Works with chars as predecessors and Strings as successors.

§Examples

use lsystems::LSystem;
let mut system = LSystem::with_axiom("b");
system.add_rule('a', "ab");

Structs§

LSystem
Represents a Lindenmayer system