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

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

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

Methods

impl<S> Vertex<S>[src]

pub fn point(&self) -> &Point<S>[src]

Borrow the inner Point.

pub fn point_mut(&mut self) -> &mut Point<S>[src]

Mutably borrow the inner Point.

Trait Implementations

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