hyperion 0.2.1

Generic LSystem implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::module_inception)]

mod axiom;
mod builder;
mod lsystem;
mod state;

pub use self::axiom::Axiom;
pub use self::builder::LSystemBuilder;
pub use self::lsystem::LSystem;
pub use self::state::State;