Trait nannou::mesh::ClearIndices

source ·
pub trait ClearIndices {
    // Required method
    fn clear_indices(&mut self);
}
Expand description

Meshes whose Indices channel can be cleared.

Required Methods§

source

fn clear_indices(&mut self)

Clear all indices from the mesh.

Implementations on Foreign Types§

source§

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

source§

fn clear_indices(&mut self)

source§

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

source§

fn clear_indices(&mut self)

Implementors§

source§

impl ClearIndices for Mesh

source§

impl<M, C> ClearIndices for WithColors<M, C>
where M: ClearIndices,

source§

impl<M, I> ClearIndices for WithIndices<M, Vec<I>>

source§

impl<M, N> ClearIndices for WithNormals<M, N>
where M: ClearIndices,

source§

impl<M, T> ClearIndices for WithTexCoords<M, T>
where M: ClearIndices,