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]

[src]

Borrow the inner Point.

[src]

Mutably borrow the inner Point.

Trait Implementations

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

[src]

Push the given vertex onto the mesh. Read more