ImageMagick.DrawingWand.NativeDrawingWand.Rotation C# (CSharp) Method

Rotation() public method

public Rotation ( double angle ) : void
angle double
return void
      public void Rotation(double angle)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Rotation(Instance, angle, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Rotation(Instance, angle, out exception);
        #endif
        CheckException(exception);
      }
      public void RoundRectangle(double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight)