[]
Represents an elliptical arc curve command in the path data.
public class SvgEllipticalArcCommand : SvgPathCommand
Initializes a new instance of the SvgEllipticalArcCommand class.
public SvgEllipticalArcCommand(bool relative = false)
relative
boolIndicates whether the command uses absolute (false) or relative (true) coordinates.
Gets or sets a value indicating whether the arc sweep is greater than or equal to 180 degrees.
public ArcSize ArcSize { get; set; }
Gets or sets the X-radius of the elliptical arc.
public float RadiusX { get; set; }
Gets or sets the Y-radius of the elliptical arc.
public float RadiusY { get; set; }
Gets or sets a value that specifies whether the arc sweep is clockwise or counterclockwise.
public SweepDirection SweepDirection { get; set; }
Gets or sets the X-coordinate of the destination point.
public float X { get; set; }
Gets or sets a value indicating how the ellipse as a whole is rotated, in degrees, relative to the current coordinate system.
public float XAxisRotation { get; set; }
Gets or sets the Y-coordinate of the destination point.
public float Y { get; set; }