MeleeGetProjectedLoc
- Parameters
-
src location
targ location
distance real
deltaAngle real
- comment
- note
It returns a new location, does not remove or alter location passed as
src
ortarg
. It means you must callRemoveLocation
yourself after calling this function.- patch
1.00
- Source
- Blizzard.j
- return type
location
- Source code
function MeleeGetProjectedLoc takes location src, location targ, real distance, real deltaAngle returns location local real srcX = GetLocationX(src) local real srcY = GetLocationY(src) local real direction = Atan2(GetLocationY(targ) - srcY, GetLocationX(targ) - srcX) + deltaAngle return Location(srcX + distance * Cos(direction), srcY + distance * Sin(direction)) endfunction