pub fn vertices_from_iter<I, V>(
    tris: I
) -> VerticesFromIter<<I as IntoIterator>::IntoIter, V> 
where I: IntoIterator<Item = Tri<V>>,
Expand description

Produce an iterator that flattens the given iterator yielding triangles into its vertices.