A crate for working with Lindenmayer systems.
An L-System consists of an alphabet of symbols that can be used to make strings, a collection of production rules that expand each symbol into a larger string of symbols, an initial axiom string from which to begin construction, and a mechanism for transforming the generated strings into geometric structures.
Lindenmayer's original L-System for modelling the growth of Algae had
variables A
and B
, axiom A
, and production rules A -> AB
, B -> A
. Iterating
this system produces the following output:
A
AB
ABA
ABAAB
Put the following in your Cargo.toml
:
toml
dcc-lsystem = "0.1.0"
An L-system is represented in this crate by an instance of LSystem
. The suggested method for constructing an LSystem
is to use a LSystemBuilder
, as shown in this implementation of Lindenmayer's Algae system:
```rust use dcc_lsystem::{LSystemBuilder, variable};
let mut builder = LSystemBuilder::new();
// Set up our two tokens let a = variable!(builder, "A"); let b = variable!(builder, "B");
// Set up our axiom builder.axiom(vec![a]);
// Set the transformation rules builder.transformationrule(a, vec![a,b]); // A -> AB builder.transformationrule(b, vec![a]); // B -> A
// Build our LSystem, which should have initial state A let mut system = builder.finish(); assert_eq!(system.render(), "A");
// system.step() applies our production rules a single time system.step(); assert_eq!(system.render(), "AB");
system.step(); assert_eq!(system.render(), "ABA");
// system.stepby() applies our production rule a number of times system.stepby(5); assert_eq!(system.render(), "ABAABABAABAABABAABABAABAABABAABAAB"); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.