Trait nannou::geom::vertex::Vertex[][src]

pub trait Vertex: Clone + Copy + PartialEq {
    type Scalar: BaseNum;
}

Types used as vertices that can be used to describe geometric points in space.

Associated Types

The values used to describe the vertex position.

Implementations on Foreign Types

impl<S> Vertex for [S; 2] where
    S: BaseNum
[src]

impl<S> Vertex for [S; 3] where
    S: BaseNum
[src]

impl<S> Vertex for (S, S) where
    S: BaseNum
[src]

impl<S> Vertex for (S, S, S) where
    S: BaseNum
[src]

Implementors