pub trait PathIterator: InternalIterator<Item = PathCommand> {
    fn linearize(self, epsilon: f64) -> Linearize<Self>
    where
        Self: Sized
, { ... } }
Expand description

An extension trait for iterators over path commands.

Provided Methods

Returns an iterator over line path commands that approximate self with tolerance epsilon.

Implementors