Enum lyon::path_iterator::SvgEvent [] [src]

pub enum SvgEvent {
    MoveTo(TypedPoint2D<f32, UnknownUnit>),
    RelativeMoveTo(TypedVector2D<f32, UnknownUnit>),
    LineTo(TypedPoint2D<f32, UnknownUnit>),
    RelativeLineTo(TypedVector2D<f32, UnknownUnit>),
    QuadraticTo(TypedPoint2D<f32, UnknownUnit>, TypedPoint2D<f32, UnknownUnit>),
    RelativeQuadraticTo(TypedVector2D<f32, UnknownUnit>, TypedVector2D<f32, UnknownUnit>),
    CubicTo(TypedPoint2D<f32, UnknownUnit>, TypedPoint2D<f32, UnknownUnit>, TypedPoint2D<f32, UnknownUnit>),
    RelativeCubicTo(TypedVector2D<f32, UnknownUnit>, TypedVector2D<f32, UnknownUnit>, TypedVector2D<f32, UnknownUnit>),
    ArcTo(TypedVector2D<f32, UnknownUnit>, Length<f32, Rad>, ArcFlagsTypedPoint2D<f32, UnknownUnit>),
    RelativeArcTo(TypedVector2D<f32, UnknownUnit>, Length<f32, Rad>, ArcFlags, TypedVector2D<f32, UnknownUnit>),
    HorizontalLineTo(f32),
    VerticalLineTo(f32),
    RelativeHorizontalLineTo(f32),
    RelativeVerticalLineTo(f32),
    SmoothQuadraticTo(TypedPoint2D<f32, UnknownUnit>),
    SmoothRelativeQuadraticTo(TypedVector2D<f32, UnknownUnit>),
    SmoothCubicTo(TypedPoint2D<f32, UnknownUnit>, TypedPoint2D<f32, UnknownUnit>),
    SmoothRelativeCubicTo(TypedVector2D<f32, UnknownUnit>, TypedVector2D<f32, UnknownUnit>),
    Close,
}

Variants

Trait Implementations

impl Copy for SvgEvent
[src]

impl Clone for SvgEvent
[src]

[src]

impl PartialEq<SvgEvent> for SvgEvent
[src]

[src]

[src]

impl Debug for SvgEvent
[src]

[src]