Appearance
商の小数部を返す(余りを返す)
math.fmod (x, y)
x を y で割った余りを返します。商はゼロに向かって丸められます。
x
y
fmod
local x, y = 7, 3 print(math.fmod(x, y)) -- 1
この例では、7 ÷ 3の余りを計算しています。
7 ÷ 3
math.modf