pub trait ClearVertices {
    // Required method
    fn clear_vertices(&mut self);
}
Expand description

Meshes whose vertices channels can be cleared.

Required Methods§

source

fn clear_vertices(&mut self)

Clear all vertices from the mesh.

Implementations on Foreign Types§

source§

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

source§

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

Implementors§