[][src]Trait nannou::mesh::ClearVertices

pub trait ClearVertices {
    fn clear_vertices(&mut self);
}

Meshes whose vertices channels can be cleared.

Required methods

fn clear_vertices(&mut self)

Clear all vertices from the mesh.

Loading content...

Implementations on Foreign Types

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

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

Loading content...

Implementors

impl<M> ClearVertices for WithIndices<M, Vec<usize>> where
    M: ClearVertices
[src]

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

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

impl<M, T, S> ClearVertices for WithTexCoords<M, Vec<T>, S> where
    M: ClearVertices
[src]

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

impl<V> ClearVertices for MeshPoints<Vec<V>>[src]

Loading content...