| | Class | Description |
| | ClosePath |
The "closepath" (Z or z) ends the current subpath
by drawing a straight line from the current point to
current subpath's initial point. |
| | CubicBezierTo |
A cubic Bézier (C,c S,s) segment is defined by a end point and two control points. |
| | EllipticalArcTo |
Defines an elliptical arc (A,a) segment from the current point. |
| | HorizontalLineTo |
A horizontal line (H,h) segment is defined by a ending x-axis point. |
| | LineTo |
A line (L,l) segment is defined by a ending x-axis and y-axis point. |
| | MoveTo |
A line (M,m) segment is defined by a target x-axis and y-axis point. |
| | QuadraticBezierTo |
Defines a quadratic Bézier curve from the current point to
(x,y) using (cx,cy) as the control point. |
| | Segment |
Base class for segment elements that make up path geometry. |
| | VerticalLineTo |
A vertical line (V,v) segment is defined by a ending y-axis point. |