Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When we touch with two fingers in a UIScrollView, we get two CG points. I want to find the distane between them. Then like I do the pinch(inside or outside). Then we will again get two points. Then after finding the distance again between these two points , I want to decide whether I pinched in or out. If i have pinced in, surely the new distance will be lesser and viceversa.

But dont know how to find an accurate measurement for the distance between 2 points, so that i can compare? Anyone have an idea how to do this?

share|improve this question

3 Answers

up vote 20 down vote accepted

Distance between p1 and p2:

CGFloat xDist = (p2.x - p1.x);
CGFloat yDist = (p2.y - p1.y);
CGFloat distance = sqrt((xDist * xDist) + (yDist * yDist));

Background: Pythagorean theorem

Edit: if you only need to calculate if the distance between the points increases or decreases, you can omit the sqrt() which will make it a little faster.

share|improve this answer
That's pretty neat. Go math. – Danilo Campos Dec 16 '09 at 4:49
6  
Is there no convenience method for this? – SpacyRicochet Oct 11 '12 at 12:17
Computational geometry axiom #1: if you are comparing distances, there is no need to incur the cost of the sqrt() operation. – psoft Apr 13 at 5:01

You can use the hypot() or hypotf() function to calculate the hypotenuse. Given two points p1 and p2:

CGFloat distance = hypotf(p1.x - p2.x, p1.y - p2.y);

And that's it.

share|improve this answer
-(float)distanceFrom:(CGPoint)point1 to:(CGPoint)point2
{
CGFloat xDist = (point2.x - point1.x);
CGFloat yDist = (point2.y - point1.y);
return sqrt((xDist * xDist) + (yDist * yDist));
}

If you are using cocos2d

float distance = ccpDistance(point1, point2);
share|improve this answer
1  
It appears ccpDistance is part of cocos2d, not part of core. Including it to avoid the pythagorean theorem is probably overkill. – Vox Feb 21 at 20:34
Go lazy ones!!! Thanks for the update. – Jason Apr 9 at 19:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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