vote up 0 vote down star

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?

flag

1 Answer

vote up 2 vote down check

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.

link|flag
Do you mean to imply that CGPathAddArcToPoint can draw a curve that is not circular? I thought all arcs are portions of a circle. – benzado Sep 17 '08 at 19:32
A circle cannot be described exactly by a Bezier curve. – Colin Barrett Oct 26 '08 at 6:35

Your Answer

Get an OpenID
or

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