GetMidpoint
not ratedTakes 2 locations and returns midpoint.
function GetMidpoint takes location one, location two returns location
return Location(((GetLocationX(one) + GetLocationX(two))/2),((GetLocationY(one) + GetLocationY(two))/2))
endfunctionNo comments.