You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-rust-examples/fern_sim/src/plant_structures/stems/xylem.rs

7 lines
200 B
Rust

//! Structures for bringing nutrients from roots up to other parts of the plant.
/// Vascular tissue for transporting water and nutrients from the roots.
pub struct Xylem {
pub flow_rate: f32,
}