[][src]Trait genmesh::Lines

pub trait Lines: Sized {
    type Vertex;
    fn lines(self) -> LinesIterator<Self, Self::Vertex>;
}

Creates an LinesIterator from another Iterator

Associated Types

type Vertex

The type of each point in the lines

Loading content...

Required methods

fn lines(self) -> LinesIterator<Self, Self::Vertex>

Convert the iterator into a LinesIterator

Loading content...

Implementors

impl<T, P, V> Lines for T where
    T: Iterator<Item = P>,
    P: EmitLines<Vertex = V>, 
[src]

type Vertex = V

Loading content...