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

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

public PathArcRel ( double x, double y, double radiusX, double radiusY, double rotationX, bool useLargeArc, bool useSweep ) : void
x double
y double
radiusX double
radiusY double
rotationX double
useLargeArc bool
useSweep bool
Результат void
      public void PathArcRel(double x, double y, double radiusX, double radiusY, double rotationX, bool useLargeArc, bool useSweep)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_PathArcRel(Instance, x, y, radiusX, radiusY, rotationX, useLargeArc, useSweep, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_PathArcRel(Instance, x, y, radiusX, radiusY, rotationX, useLargeArc, useSweep, out exception);
        #endif
        CheckException(exception);
      }
      public void Render()