ATIS v0.5.0

This commit is contained in:
Frank
2019-10-21 22:14:10 +02:00
parent 9e742b1620
commit 7b92053277
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -864,7 +864,7 @@ function UTILS.VecAngle(a, b)
if cosalpha>=0.9999999999 then --acos(1) is not defined.
alpha=0
elseif cosalpha<=-0.999999999 then --acos(-1) is not defined.
alpha=math.pi()
alpha=math.pi
else
alpha=math.acos(cosalpha)
end