Type Definition nannou::draw::mesh::vertex::Vertex[][src]

type Vertex<S> = WithTexCoords<WithColor<Point<S>, Color>, TexCoords<S>>;

The vertex type produced by the draw::Mesh's inner MeshType.

Methods

impl<S> Vertex<S>
[src]

Borrow the inner Point.

Mutably borrow the inner Point.

Trait Implementations

impl<S> IntoVertex<S> for Vertex<S>
[src]

Convert self into a Vertex.

impl<S> PushVertex<Vertex<S>> for Mesh<S>
[src]

Push the given vertex onto the mesh. Read more