ImageMagick.Drawables.Arc C# (CSharp) Метод

Arc() публичный Метод

Creates a new DrawableArc instance.
public Arc ( double startX, double startY, double endX, double endY, double startDegrees, double endDegrees ) : Drawables
startX double The starting X coordinate of the bounding rectangle.
startY double The starting Y coordinate of thebounding rectangle.
endX double The ending X coordinate of the bounding rectangle.
endY double The ending Y coordinate of the bounding rectangle.
startDegrees double The starting degrees of rotation.
endDegrees double The ending degrees of rotation.
Результат Drawables
    public Drawables Arc(double startX, double startY, double endX, double endY, double startDegrees, double endDegrees)
    {
      _Drawables.Add(new DrawableArc(startX, startY, endX, endY, startDegrees, endDegrees));
      return this;
    }