Appearance
2つの引数のアークタンジェントを返す
math.atan2 (y, x)
y / x のアークタンジェント(逆正接)をラジアン単位で返します。math.atan2 は符号を考慮して結果の象限を正確に決定します。
y / x
math.atan2
local y, x = 1, 1 print(math.atan2(y, x)) -- ラジアン単位での結果
この例では、y / xのアークタンジェントを計算します。
math.atan