Trait nannou::mesh::PushVertex [] [src]

pub trait PushVertex<V> {
    fn push_vertex(&mut self, vertex: V);
}

Meshes that can push vertices of type V while keeping all non-index channels the same length before and after the push.

Required Methods

Push the given vertex onto the mesh.

Implementation requires that all non-index channels maintain the same length before and after a call to this method.

Implementations on Foreign Types

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

[src]

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

[src]

Implementors