2D dist = pythagoras, 3D dist =/= pythagoras?
Posted: Sun May 29, 2011 4:20 pm
When I use Pythagorean theorem I always get same answer as when I use this:
Which makes perfect sense, one just checks based on sides, and one checks using another method. However, when I do this:
Either way I get a different answer than what Pythagoras yields. I'm not sure which ones right, any help? Alright well I said that wrong, I AM sure which ones right, Pythagoras is god. I just want to know, what I can do to make the other way of doing it correct too, or another similar way anyways.
Code: Select all
sqrt( (x2-x1)^2 + (y2-y1)^2 )
Code: Select all
sqrt( (x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
OR
cuberoot( (x1-x1)^2 + (y2-y1)^2 + (z2-z1)^2)