-- -- Determine the absolute distance between two points -- Ken Loge - http://diginoodles.com -- on getDistance me, point1, point2 return sqrt(power(point1.locH - point2.locH, 2) + power(point1.locV - point2.locV, 2)) end