ImageMagick.Paths.SmoothQuadraticCurveToRel C# (CSharp) Method

SmoothQuadraticCurveToRel() public method

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

Same methods

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