Trait nannou_mesh::GetVertex[][src]

pub trait GetVertex<I> {
    type Vertex;
    fn get_vertex(&self, index: I) -> Option<Self::Vertex>;
}
Expand description

Mesh types that can be indexed to produce a vertex.

Associated Types

The vertex type representing all channels of data within the mesh at a single index.

Required methods

Create a vertex containing all channel properties for the given index.

Implementations on Foreign Types

Implementors