ImageMagick.Paths.CurveToAbs C# (CSharp) Method

CurveToAbs() public method

Initializes a new instance of the PathCurveToAbs class.
public CurveToAbs ( PointD controlPointStart, PointD controlPointEnd, PointD end ) : Paths
controlPointStart PointD Coordinate of control point for curve beginning
controlPointEnd PointD Coordinate of control point for curve ending
end PointD Coordinate of the end of the curve
return Paths
    public Paths CurveToAbs(PointD controlPointStart, PointD controlPointEnd, PointD end)
    {
      _Paths.Add(new PathCurveToAbs(controlPointStart, controlPointEnd, end));
      return this;
    }

Same methods

Paths::CurveToAbs ( double x1, double y1, double x2, double y2, double x, double y ) : Paths