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

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

public RoundRectangle ( double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight ) : void
centerX double
centerY double
width double
height double
cornerWidth double
cornerHeight double
Результат void
      public void RoundRectangle(double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_RoundRectangle(Instance, centerX, centerY, width, height, cornerWidth, cornerHeight, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_RoundRectangle(Instance, centerX, centerY, width, height, cornerWidth, cornerHeight, out exception);
        #endif
        CheckException(exception);
      }
      public void Scaling(double x, double y)