Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CGPathAddArc vs CGPathAddArcToPoint

Apple's CoreGraphics library defines two functions for describing an arc.

  • CGPathAddArc adds an arc based on a center point, radius, and pair of angles.
  • CGPathAddArcToPoint adds an arc based on a radius and a pair of tangent lines.

The details are explained in the CGPath API reference. Why two functions? Simple convenience? Is one more efficient than the other? Is one defined in terms of the other?

like image 265
benzado Avatar asked Sep 16 '08 22:09

benzado


2 Answers

CGContextAddArc does this:

addArc

where the red line is what will be drawn, sA is startAngle, eA is the endAngle, r is radius, and x and y are x and y. If you have a previous point the function will line from this point to the start of the arc (unless you are careful this line won't be going in the same direction as the arc).

CGContextAddArcToPoint works like this:

addArc

Where P1 is the current point of the path, the x1, x2, y1, y2 match the functions x1, x2, y1, y2 and r is radius. The arc will start in the same direction as the line between the current point and (x1, y1) and end in the direction between (x1, y1) and (x2, y2). it won't line to (x2, y2) It will stop at the end of the circle.

like image 105
James Snook Avatar answered Nov 11 '22 12:11

James Snook


The former gets you a portion of a circle (really, an approximation of one), while the latter exposes the fact that you're creating a Bézier path. Depending on what you're actually drawing, one or the other might be more convenient. You could really consider both of them conveniences for CGPathAddCurveToPoint.

like image 22
Chris Hanson Avatar answered Nov 11 '22 11:11

Chris Hanson