Function nannou_mesh::raw_vertices[][src]

pub fn raw_vertices<M>(mesh: M) -> RawVertices<M>
Notable traits for RawVertices<M>
impl<M> Iterator for RawVertices<M> where
    M: GetVertex<usize>, 
type Item = M::Vertex;
where
    M: Points
Expand description

An iterator yielding the raw vertices (with combined channels) of a mesh.

Requires that the inner mesh implements GetVertex.

Returns None when the inner mesh first returns None for a call to GetVertex::get_vertex.