[][src]Trait lyon_geom::traits::FlattenedForEach

pub trait FlattenedForEach: Segment {
    fn for_each_flattened<F: FnMut(Point<Self::Scalar>)>(
        &self,
        tolerance: Self::Scalar,
        call_back: &mut F
    ); }

Types that implement call-back based iteration

Required methods

fn for_each_flattened<F: FnMut(Point<Self::Scalar>)>(
    &self,
    tolerance: Self::Scalar,
    call_back: &mut F
)

Iterates through the curve invoking a callback at each point.

Loading content...

Implementors

impl<S: Scalar> FlattenedForEach for CubicBezierSegment<S>[src]

impl<T> FlattenedForEach for T where
    T: FlatteningStep
[src]

Loading content...