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/leaves.rs

7 lines
137 B
Rust

#![allow(dead_code)]
//! Simulation of individual leaves (for the formation of leaves, see `stem`).
pub struct Leaf {
pub x: bool
}