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

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

public PathCurveToRel ( double x1, double y1, double x2, double y2, double x, double y ) : void
x1 double
y1 double
x2 double
y2 double
x double
y double
Результат void
      public void PathCurveToRel(double x1, double y1, double x2, double y2, double x, double y)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_PathCurveToRel(Instance, x1, y1, x2, y2, x, y, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_PathCurveToRel(Instance, x1, y1, x2, y2, x, y, out exception);
        #endif
        CheckException(exception);
      }
      public void PathFinish()