2022-01-17 23:53:03 +00:00
|
|
|
function GetAngleFromVector(x,y)
|
2021-12-31 01:46:21 +00:00
|
|
|
local reduce = 0
|
|
|
|
if x < 0 then
|
|
|
|
reduce = math.rad(180)
|
|
|
|
end
|
|
|
|
return math.atan(y/x) - reduce
|
|
|
|
end
|
|
|
|
|
|
|
|
function math.sign(x)
|
|
|
|
if x > 0 then
|
|
|
|
return 1
|
|
|
|
elseif x < 0 then
|
|
|
|
return -1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|