Enum sixtyfps_corelib::graphics::PathEvent [−][src]
#[repr(C)]
pub enum PathEvent {
Begin,
Line,
Quadratic,
Cubic,
EndOpen,
EndClosed,
}Expand description
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
Begin
The beginning of the path.
Line
A straight line on the path.
Quadratic
A quadratic bezier curve on the path.
Cubic
A cubic bezier curve on the path.
EndOpen
The end of the path that remains open.
EndClosed
The end of a path that is closed.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PathEvent
impl UnwindSafe for PathEvent
Blanket Implementations
Mutably borrows from an owned value. Read more