Enum sixtyfps_corelib::graphics::PathEvent [−][src]
#[repr(C)] pub enum PathEvent { Begin, Line, Quadratic, Cubic, EndOpen, EndClosed, }
PathEvent is a low-level data structure describing the composition of a path. Typically it is generated at compile time from a higher-level description, such as SVG commands.
Variants
The beginning of the path.
A straight line on the path.
A quadratic bezier curve on the path.
A cubic bezier curve on the path.
The end of the path that remains open.
The end of a path that is closed.
Trait Implementations
impl StructuralPartialEq for PathEvent
[src]
impl StructuralPartialEq for PathEvent
[src]Auto Trait Implementations
impl RefUnwindSafe for PathEvent
impl RefUnwindSafe for PathEvent
impl UnwindSafe for PathEvent
impl UnwindSafe for PathEvent