ImageMagick.Paths.SmoothCurveToAbs C# (CSharp) Method

SmoothCurveToAbs() public method

Initializes a new instance of the PathSmoothCurveToAbs class.
public SmoothCurveToAbs ( PointD controlPoint, PointD end ) : Paths
controlPoint PointD Coordinate of second point
end PointD Coordinate of final point
return Paths
    public Paths SmoothCurveToAbs(PointD controlPoint, PointD end)
    {
      _Paths.Add(new PathSmoothCurveToAbs(controlPoint, end));
      return this;
    }

Same methods

Paths::SmoothCurveToAbs ( double x2, double y2, double x, double y ) : Paths