Contents

addQuadCurve(to:control:)

Adds a quadratic Bézier curve to the current path, with the specified end point and control point.

Declaration

func addQuadCurve(to end: CGPoint, control: CGPoint)

Parameters

  • end:

    The point, in user space coordinates, at which to end the curve.

  • control:

    The control point of the curve, in user space coordinates.

Discussion

This method constructs a curve starting from the path’s current point and ending at the specified end point, with curvature defined by the control point. After this method appends that curve to the current path, the end point of the curve becomes the path’s current point.

See Also

Constructing a Current Graphics Path