Trait nannou::mesh::Indices[][src]

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

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

Associated Types

The channel type containing indices.

Required Methods

Borrow the index channel from the mesh.

Implementations on Foreign Types

impl<'a, M> Indices for &'a M where
    M: Indices
[src]

impl<'a, M> Indices for &'a mut M where
    M: Indices
[src]

impl<'a, M> Indices for Ref<'a, M> where
    M: Indices
[src]

impl<'a, M> Indices for RefMut<'a, M> where
    M: Indices
[src]

Implementors