PathNodes
PathNodes is a sealed class that contains multiple classes to represent different commands of an SVG/AVG path. These classes include: MoveTo, ArcTo, VerticalLineTo, HorizontalLineTo, LineTo, CurveTo, ReflectiveCurveTo, QuadTo and ReflectiveQuadTo.
Inheritors
Constructors
Types
The CurveTo class represents the SVG/AVG "curve to" command which is used to create a cubic Bézier curve.
The HorizontalLineTo class represents the SVG/AVG "horizontal line to" command which is used to draw a horizontal line from the current point to a new point.
The QuadTo class represents the SVG/AVG "quadratic Bézier curve" command
The ReflectiveCurveTo represents the SVG/AVG "smooth cubic Bézier" command.
The ReflectiveQuadTo represents the SVG/AVG "reflective quadratic Bézier curve to" command, which is used to create a smooth quadratic Bézier curve.
The VerticalLineTo class represents the SVG/AVG "vertical line to" command, which instructs the pen to move vertically by the specified amount.