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

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

Initializes a new instance of the PathCurveToRel class.
public CurveToRel ( 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
Результат Paths
    public Paths CurveToRel(PointD controlPointStart, PointD controlPointEnd, PointD end)
    {
      _Paths.Add(new PathCurveToRel(controlPointStart, controlPointEnd, end));
      return this;
    }

Same methods

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