ImageMagick.PathSmoothCurveToAbs.PathSmoothCurveToAbs C# (CSharp) Method

PathSmoothCurveToAbs() public method

Initializes a new instance of the PathSmoothCurveToAbs class.
public PathSmoothCurveToAbs ( PointD controlPoint, PointD end )
controlPoint PointD Coordinate of second point
end PointD Coordinate of final point
    public PathSmoothCurveToAbs(PointD controlPoint, PointD end)
    {
      _ControlPoint = controlPoint;
      _End = end;
    }

Same methods

PathSmoothCurveToAbs::PathSmoothCurveToAbs ( double x2, double y2, double x, double y )
PathSmoothCurveToAbs