Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.KitchenSink.DecodeSvgPath

Summary

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

Static methods

IEnumerable<DecodeSvgPath.PathPiece>
DecodePieces(string svgPath)
Converts a string containing SVG path data to a sequence of DecodeSvgPath.PathPiece objects.
IEnumerable<IEnumerable<PointD>>
Do(IEnumerable<DecodeSvgPath.PathPiece> pieces, double smoothness)
Converts a sequence of DecodeSvgPath.PathPiece objects to a sequence of points using the specified smoothness to render Bézier curves.
IEnumerable<IEnumerable<PointD>>
Do(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.

Nested types

Encapsulates a piece of SVG path data.
Encapsulates an elliptical arc in SVG path data.
Specifies a type of piece within an SVG path.