Enum fonterator::PathOp [] [src]

pub enum PathOp {
    MoveTo(f32f32),
    LineTo(f32f32),
    QuadTo(f32f32f32f32),
    Close,
}

An operation that builds a path.

Variants

Move somewhere else x, y.

Next point in edge x, y

Quadratic curve x, y, cx, cy

Close the path

Trait Implementations

Auto Trait Implementations

impl Send for PathOp

impl Sync for PathOp