Enum lyon::path::QuadraticEvent[]

pub enum QuadraticEvent {
    MoveTo(TypedPoint2D<f32, UnknownUnit>),
    LineTo(TypedPoint2D<f32, UnknownUnit>),
    QuadraticTo(TypedPoint2D<f32, UnknownUnit>, TypedPoint2D<f32, UnknownUnit>),
    Close,
}

Variants

Methods

impl QuadraticEvent

Trait Implementations

impl Clone for QuadraticEvent

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QuadraticEvent

Formats the value using the given formatter. Read more

impl Copy for QuadraticEvent

impl Transform for QuadraticEvent

impl PartialEq<QuadraticEvent> for QuadraticEvent

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl TightBoundingRect for QuadraticEvent
[src]

impl FastBoundingRect for QuadraticEvent
[src]

Auto Trait Implementations