Enum nannou::geom::graph::node::Node[][src]

pub enum Node<S = DefaultScalar> where
    S: BaseFloat
{ Point, Graph { graph: Graph<S>, dfs: Dfs<S>, }, }

The Node type used within the Graph.

Variants

A point has no vertices other than that yielded at the node's position.

Useful for acting as an invisible "reference" node for controlling other children nodes.

Also used to represent the graph's "origin" node.

A nested Graph.

Fields of Graph

Trait Implementations

impl<S: Clone> Clone for Node<S> where
    S: BaseFloat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: Debug> Debug for Node<S> where
    S: BaseFloat
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<S> Send for Node<S> where
    S: Send

impl<S> Sync for Node<S> where
    S: Sync