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

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

Creates a new DrawableRoundRectangle instance.
public RoundRectangle ( double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight ) : Drawables
centerX double The center X coordinate.
centerY double The center Y coordinate.
width double The width.
height double The height.
cornerWidth double The corner width.
cornerHeight double The corner height.
Результат Drawables
    public Drawables RoundRectangle(double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight)
    {
      _Drawables.Add(new DrawableRoundRectangle(centerX, centerY, width, height, cornerWidth, cornerHeight));
      return this;
    }