ImageMagick.Paths.SmoothQuadraticCurveToAbs C# (CSharp) Method

SmoothQuadraticCurveToAbs() public method

Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.
public SmoothQuadraticCurveToAbs ( PointD end ) : Paths
end PointD Coordinate of final point
return Paths
    public Paths SmoothQuadraticCurveToAbs(PointD end)
    {
      _Paths.Add(new PathSmoothQuadraticCurveToAbs(end));
      return this;
    }

Same methods

Paths::SmoothQuadraticCurveToAbs ( double x, double y ) : Paths