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

Bezier() public method

public Bezier ( PointInfoCollection coordinates, int length ) : void
coordinates PointInfoCollection
length int
return void
      public void Bezier(PointInfoCollection coordinates, int length)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Bezier(Instance, PointInfoCollection.GetInstance(coordinates), (UIntPtr)length, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Bezier(Instance, PointInfoCollection.GetInstance(coordinates), (UIntPtr)length, out exception);
        #endif
        CheckException(exception);
      }
      public void BorderColor(MagickColor value)