PathBuilder

PathBuilder class

The PathBuilder class is responsible for building path segments SVGPathSeg from list of the trace points.

public class PathBuilder : IPathBuilder

Constructors

NameDescription
PathBuilder()Initializes a new instance of the PathBuilder class.
PathBuilder(float)Initializes a new instance of the PathBuilder class.

Properties

NameDescription
Tension { get; set; }The value of the tensions affects how sharply the curve bends at the (interpolated) control points. It must be in the range from 0 to 1. Any higher or lower values will be aligned with the minimum and maximum values of this range, accordingly.

Methods

NameDescription
Build(IEnumerable<PointF>, SVGPathElement)Builds path segments from the list of the trace points.

See Also