Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.Geometry.SvgPath

Summary

Provides methods to parse the syntax used in SVG path data.

Static methods

IEnumerable<SvgPiece>
Decode(string svgPath)
Converts a string containing SVG path data to a sequence of SvgPiece objects.
IEnumerable<SvgPiece>
ReversePath(this IEnumerable<SvgPiece> svgPath)
Reverses the direction of an SVG path.
IEnumerable<IEnumerable<PointD>>
Smooth(this IEnumerable<SvgPiece> pieces, double smoothness)
Converts a sequence of SvgPiece objects to a sequence of points using the specified smoothness to render Bézier curves and circular arcs.
IEnumerable<IEnumerable<PointD>>
Smooth(string svgPath, double smoothness)
Converts a string containing SVG path data to a sequence of points using the specified smoothness to render Bézier curves.