ImageMagick.PathSmoothCurveToRel.PathSmoothCurveToRel C# (CSharp) Method

PathSmoothCurveToRel() public method

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

Same methods

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