Type Alias Verb

Source
pub type Verb = SkPath_Verb;
Expand description

Verb instructs Path how to interpret one or more Point and optional conic weight; manage contour, and terminate Path.

Aliased Type§

#[repr(u32)]
pub enum Verb { Move = 0, Line = 1, Quad = 2, Conic = 3, Cubic = 4, Close = 5, Done = 6, }

Variants§

§

Move = 0

§

Line = 1

§

Quad = 2

§

Conic = 3

§

Cubic = 4

§

Close = 5

§

Done = 6