How to find distance between two CGPoint in Cocos2D ?

By | April 16, 2011

Hi,
Sometimes you may need to find the distance between two CGPoint in cocos2D or box2D using Objective C. See the following code to see how you could do that.

CGPoint first= CGPointMake(50,50);
CGPoint second= CGPointMake(200,200);
float maxDistance= ccpDistance(first, second);

🙂

Leave a Reply

Your email address will not be published. Required fields are marked *