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

pub trait Vertex2d: Vertex {
    fn point2(self) -> Point2<Self::Scalar>;
}

Vertex types that have at least 2 dimensions.

Required Methods

The x, y location of the vertex.

Implementations on Foreign Types

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

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

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

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

Implementors