Thread: Distance?
View Single Post
  #2  
Old 10-08-2011, 04:03 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
PHP Code:
function getDistance(temp.x1temp.y1temp.x2temp.y2) {
  return ((
temp.x1 temp.x2) ^ 2) + ((temp.y1 temp.y2) ^ 2)) ^ 0.5;

__________________
Reply With Quote