ImageMagick.Paths.SmoothCurveToRel C# (CSharp) Метод

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

Initializes a new instance of the PathSmoothCurveToRel class.
public SmoothCurveToRel ( PointD controlPoint, PointD end ) : Paths
controlPoint PointD Coordinate of second point
end PointD Coordinate of final point
Результат Paths
    public Paths SmoothCurveToRel(PointD controlPoint, PointD end)
    {
      _Paths.Add(new PathSmoothCurveToRel(controlPoint, end));
      return this;
    }

Same methods

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