Struct lyon::path_iterator::PathIter [] [src]

pub struct PathIter<Iter> { /* fields omitted */ }

An adapater iterator that implements PathIterator on top of an Iterator.

Methods

impl<Iter> PathIter<Iter> where
    Iter: Iterator<Item = PathEvent>, 
[src]

[src]

Trait Implementations

impl<Iter> PathIterator for PathIter<Iter> where
    Iter: Iterator<Item = PathEvent>, 
[src]

[src]

The returned structure exposes the current position, the first position in the current sub-path, and the position of the last control point. Read more

[src]

Returns an iterator that turns curves into line segments.

[src]

Returns an iterator of SVG events.

impl<Iter> Iterator for PathIter<Iter> where
    Iter: Iterator<Item = PathEvent>, 
[src]

[src]