[][src]Trait genmesh::Vertices

pub trait Vertices<SRC, V> {
    fn vertices(self) -> VerticesIterator<SRC, V>;
}

Supplies a way to convert an iterator of polygons to an iterator of vertices. Useful for when you need to write the vertices into a graphics pipeline.

Required methods

Important traits for VerticesIterator<SRC, V>
fn vertices(self) -> VerticesIterator<SRC, V>

Convert a polygon iterator to a vertices iterator.

Loading content...

Implementors

impl<V, P: EmitVertices<V>, T: Iterator<Item = P>> Vertices<T, V> for T[src]

Loading content...