[]
Represents a quadratic Bézier curve command in the path data.
public class SvgQuadraticBezierCurveToCommand : SvgPathCommand
Initializes a new instance of the SvgQuadraticBezierCurveToCommand class.
public SvgQuadraticBezierCurveToCommand(bool relative = false)
relative
boolIndicates whether the command uses absolute (false) or relative (true) coordinates.
Gets or sets the X-coordinate of the destination point.
public float X { get; set; }
Gets or sets the X-coordinate of the control point.
public float X1 { get; set; }
Gets or sets the Y-coordinate of the destination point.
public float Y { get; set; }
Gets or sets the Y-coordinate of the control point.
public float Y1 { get; set; }