Trait nannou::mesh::ClearIndices[][src]

pub trait ClearIndices {
    fn clear_indices(&mut self);
}

Meshes whose Indices channel can be cleared.

Required Methods

Clear all indices from the mesh.

Implementations on Foreign Types

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

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

Implementors