fern_sim_eojin 0.1.0

Fern simulation, from the cellular level up.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Stems hold the weight of the plant and are largely responsible for its
//! shape.  Parameters on `Stem` (not `Leaf`) are responsible for pinnation,
//! the feathery leaf structure that's the most immediately recognizable
//! property of ferns.

// in plant_structures/stems.rs
pub mod xylem;
pub mod phloem;

pub struct Stem {
    pub furled: bool
}

pub type StemSet = Vec<Stem>;