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);
🙂