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

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

Initializes a new instance of the PathCurveToRel class.
public PathCurveToRel ( PointD controlPointStart, PointD controlPointEnd, PointD end )
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
    public PathCurveToRel(PointD controlPointStart, PointD controlPointEnd, PointD end)
    {
      _ControlPointStart = controlPointStart;
      _ControlPointEnd = controlPointEnd;
      _End = end;
    }

Same methods

PathCurveToRel::PathCurveToRel ( double x1, double y1, double x2, double y2, double x, double y )