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

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

Meshes whose Indices channel can be cleared.

Required methods

fn clear_indices(&mut self)

Clear all indices from the mesh.

Loading content...

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]

Loading content...

Implementors

impl<M, C> ClearIndices for WithColors<M, C> where
    M: ClearIndices
[src]

impl<M, I> ClearIndices for WithIndices<M, Vec<I>>[src]

impl<M, N> ClearIndices for WithNormals<M, N> where
    M: ClearIndices
[src]

impl<M, T> ClearIndices for WithTexCoords<M, T> where
    M: ClearIndices
[src]

impl<S> ClearIndices for Mesh<S>[src]

Loading content...