[]
Represents a cubic Bézier curve command in the path data.
public class SvgCurveToCommand : SvgPathCommand
Initializes a new instance of the SvgCurveToCommand class.
public SvgCurveToCommand(bool relative = false)
Gets or sets the X-coordinate of the destination point.
public float X { get; set; }
Gets or sets the X-coordinate of the first control point.
public float X1 { get; set; }
Gets or sets the X-coordinate of the second control point.
public float X2 { 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 first control point.
public float Y1 { get; set; }
Gets or sets the Y-coordinate of the second control point.
public float Y2 { get; set; }