ImageMagick.DrawingWand.NativeDrawingWand.Polygon C# (CSharp) Метод

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

public Polygon ( PointInfoCollection coordinates, int length ) : void
coordinates PointInfoCollection
length int
Результат void
      public void Polygon(PointInfoCollection coordinates, int length)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Polygon(Instance, PointInfoCollection.GetInstance(coordinates), (UIntPtr)length, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Polygon(Instance, PointInfoCollection.GetInstance(coordinates), (UIntPtr)length, out exception);
        #endif
        CheckException(exception);
      }
      public void Polyline(PointInfoCollection coordinates, int length)