Struct base::prop::plant::Branch [] [src]

pub struct Branch {
    pub points: Vec<ControlPoint>,
    pub is_trunk: bool,
}

Fields

points: Vec<ControlPoint>

At least 2 points describing the branch.

The branch extends through all ControlPoints in order.

is_trunk: bool

Tells whether trunk_color or leaf_color should be used for this branch.

Trait Implementations

impl Debug for Branch
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Branch
[src]

fn clone(&self) -> Branch

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more