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

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

public Shear ( double xAngle, double yAngle ) : void
xAngle double
yAngle double
Результат void
      public void Shear(double xAngle, double yAngle)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Shear(Instance, xAngle, yAngle, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Shear(Instance, xAngle, yAngle, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void SigmoidalContrast(bool sharpen, double contrast, double midpoint)
MagickImage.NativeMagickImage