I'm looking for a way to draw a curve (perhaps a parametric function?) into a CGContext

The best example which I can think of is the Adobe Ideas iPad application. As the user drags their finger, the application draws lines for every touchesMoved: using CGContextAddLineToPoint. After the user picks up their finger at touchesEnded:, the application does some math and replaces all of the lines with a single, smoothed curve.

What I have is a list of CGPoints, and I am looking to draw a smooth curve which follows those CGPoints into the CGContext.

Any assistance?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I'd advise creating a CGPathRef and use the CGPathAddQuadCurveToPoint method.

Hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.