vote up 1 vote down star
2

And by adjacent, I only mean one unit left, right, up, or down. Diagonals don't count. You know the x,y grid coordinates of both positions.

Ultimately this is for AS3, but answers in pseudo code would be sufficient.

flag

2 Answers

vote up 11 vote down check
abs(a.x - b.x) + abs(a.y - b.y) == 1
link|flag
vote up 3 vote down

(a.x - b.x) ^ 2 + (a.y - b.y) ^ 2 = 1

link|flag
Squaring the values is completely redundant (1 ^ 2 = 1) – Alex Barrett Jul 3 at 3:05
not true... it's purposed is to correct the sign when a.x - b.x = -1 or a.y - b.y = -1 (just as 'abs' does in the accepted answer) – Michael Bray Jul 3 at 3:06
Squaring is more expensive though I'd think. – Matthew Scharley Jul 3 at 3:20
I agree... which is why I voted up the other answer. :) – Michael Bray Jul 3 at 3:32

Your Answer

Get an OpenID
or

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