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

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

Meshes whose vertices channels can be cleared.

Required Methods

Clear all vertices from the mesh.

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]

Implementors