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

Point() public method

public Point ( double x, double y ) : void
x double
y double
return void
      public void Point(double x, double y)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Point(Instance, x, y, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Point(Instance, x, y, out exception);
        #endif
        CheckException(exception);
      }
      public void Polygon(PointInfoCollection coordinates, int length)