Appearance
アークサインを返す
math.asin (x)
x のアークサイン(逆正弦)をラジアン単位で返します。x の範囲は -1 から 1 です。
x
-1
1
local x = 0.5 print(math.asin(x)) -- ラジアン単位での結果
この例では、0.5のアークサインを計算します。
0.5
math.acos
math.atan