hyperion 0.2.1

Generic LSystem implementation.
Documentation
1
2
3
4
5
6
7
8
9
/// Conditional used when elvaluating LSystem rules.
#[derive(Debug, PartialEq, Clone, Copy, Hash, Eq)]
pub enum Conditional {
    Or,
    And,
    EqualTo,
    GreaterThan,
    LessThan,
}