Appearance
絶対値を返す
math.abs (x)
x の絶対値を返します。
x
local x = -5 print(math.abs(x)) -- 5
この例では、-5の絶対値を計算して5を返しています。
-5
5
math.min
math.max