Trait genmesh::Lines[][src]

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

Creates an LinesIterator from another Iterator

Associated Types

The type of each point in the lines

Required Methods

Convert the iterator into a LinesIterator

Implementors