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

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

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

Same methods

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