Appearance
指定された数値以下の最大の整数を返す
math.floor (x)
x 以下の最大の整数(切り捨てた整数値)を返します。
x
local x = 1.8 print(math.floor(x)) -- 1
この例では、1.8以下の最大の整数を計算しています。
1.8
math.ceil