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

PathLineToAbs() public method

public PathLineToAbs ( double x, double y ) : void
x double
y double
return void
      public void PathLineToAbs(double x, double y)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_PathLineToAbs(Instance, x, y, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_PathLineToAbs(Instance, x, y, out exception);
        #endif
        CheckException(exception);
      }
      public void PathLineToRel(double x, double y)