Expand description
All Sk* types are accessible via skia_safe::
Structs§
- Iter
- Iterates through verb array, and associated
Point
array and conic weight. Provides options to treat open contours as closed, and to ignore degenerate data. - RawIter
Deprecated - Segment
Mask - SegmentMask constants correspond to each drawing Verb type in
crate::Path
; for instance, ifcrate::Path
only contains lines, only thecrate::path::SegmentMask::LINE
bit is set.
Enums§
- AddPath
Mode - AddPathMode chooses how
add_path()
appends. Adding onePath
to another can extend the last contour or start a new contour. - ArcSize
- Four oval parts with radii (rx, ry) start at last
Path
Point
and ends at (x, y). ArcSize and Direction select one of the four oval parts. - Direction
- Fill
Type - Verb
- Verb instructs
Path
how to interpret one or morePoint
and optional conic weight; manage contour, and terminatePath
.