AngleBetweenPoints

Parameters
locA location
locB location
return type
real
Source code
function AngleBetweenPoints takes location locA, location locB returns real
    return bj_RADTODEG * Atan2(GetLocationY(locB) - GetLocationY(locA), GetLocationX(locB) - GetLocationX(locA))
endfunction
Source
Blizzard.j
wc3modding.com
AngleBetweenPoints