I'm trying to animate an object along a path...while it's moving it should continue to "point" towards another object (or CGPoint). What should I be looking for in the framework (Cocoa-Touch) to accomplish this? Maybe something in CAShapeLayer? Though I think that's more for animating the path itself... It's not jumping out at me...

link|improve this question

70% accept rate
feedback

1 Answer

I believe you're looking for the "bearing" between two points. Here's a good starting point to get you going.

link|improve this answer
bearing seems to take into account the curvature of a sphere with it's lat & long values. i'm just moving along a 2D plane. – Meltemi Apr 22 '10 at 21:22
I am looking for a similar thin @Meltemi did u find any solution? – Tobias Jun 2 '11 at 12:52
Did "u" follow the link I provided? This is simple stuff and there are countless examples all over the web, once you know the terminology (given in the first sentence). You can even find examples (one on SO) googling, "objective-c calculate bearing". – Joshua Nozzi Jun 2 '11 at 14:12
feedback

Your Answer

 
or
required, but never shown

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