Declaration
public static IEnumerable<IEnumerable<PointD>> Do(
string svgPath,
double bézierSmoothness
)Summary
Converts a string containing SVG path data to a sequence of points using the specified
bézierSmoothness to render Bézier curves.
Parameters
| string | svgPath |
The SVG path data. |
| double | bézierSmoothness |
A value indicating the maximum amount by which each Bézier curve is allowed to be approximated. The smaller
this value, the more points are generated for each Bézier curve. |
Returns
A sequence of points that represent the fully rendered path.