Trait nannou_mesh::Indices[][src]

pub trait Indices {
    type Index;
    type Indices: Channel<Element = Self::Index>;
    fn indices(&self) -> &Self::Indices;
}
Expand description

Meshes that contain a channel of indices that describe the edges between points.

Associated Types

The type used to index into the vertex buffer.

The channel type containing indices.

Required methods

Borrow the index channel from the mesh.

Implementations on Foreign Types

Implementors