Summary
Specifies a type of piece within an SVG path.
Enum values
| 3 | Draws an elliptical arc. |
| 2 |
Draws a set of Bézier curves. The length of the DecodeSvgPath.PathPiece.Points array is a multiple of
three (two control points and an end-point). The first start point is the last point of the previous
piece. |
| 4 | Designates the end of a path or subpath. |
| 1 | Draws a set of straight lines connecting each point (including the last point of the previous piece). |
| 0 |
Moves to a new point without drawing a line. This is usually used only at the start of a subpath (i.e., at
the start of a path or after an DecodeSvgPath.PathPieceType.End). |