I am trying to figure out the formula to get the distance between two objects in 3d space. So far, the answers are wrong when I run the program:
float Distance3D(const float & object1X ,
const float & object1Y ,
const float & object1Z ,
const float & object2X ,
const float & object2Y ,
const float & object2Z )
{
float x = pow ((object2X - object1X),2);// for x
float y = pow ((object2Y - object1Y),2);// for y
float z = pow ((object2Z - object1Z),2);// for z
float objectDistance = 0.0f;
objectDistance = sqrt(object2X*object1X + object2Y*object1Y + object2Z*object1Z);
cout << objectDistance << endl;
return objectDistance;
}
x,yandzif you never use them in the later code? You correctly calculatedx,yandz. Now continue to work withx,yandzto get the distance. – AndreyT Nov 11 '12 at 23:13