ImageMagick.MagickImage.NativeMagickImage.Roll C# (CSharp) Метод

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

public Roll ( int x, int y ) : void
x int
y int
Результат void
      public void Roll(int x, int y)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Roll(Instance, (IntPtr)x, (IntPtr)y, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Roll(Instance, (IntPtr)x, (IntPtr)y, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Rotate(double degrees)
MagickImage.NativeMagickImage