Type Alias nannou::draw::mesh::vertex::Vertex

source ·
pub type Vertex = WithTexCoords<WithColor<Point, Color>, TexCoords>;
Expand description

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

Aliased Type§

struct Vertex {
    pub vertex: WithColor<Vec3>,
    pub tex_coords: Vec2,
}

Fields§

§vertex: WithColor<Vec3>§tex_coords: Vec2