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§

source§

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

source§

impl<M, I> ClearVertices for WithIndices<M, Vec<I>>
where M: ClearVertices,

source§

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

source§

impl<M, T> ClearVertices for WithTexCoords<M, Vec<T>>
where M: ClearVertices,

source§

impl<V> ClearVertices for MeshPoints<Vec<V>>