1.数学函数库
math.abs(x) | 取绝对值 |
math.ceil(x) | 向上取整 |
math.floor(x) | 向下取整 |
math.mod(x,y) | 取模运算 |
math.max(z,y,..) | 最大值 |
math.randomseed(os.time()) | 随机数种子 |
math.random(x,y) | x - y 随机数 |
2024-01-19 14:41:28
math.abs(x) | 取绝对值 |
math.ceil(x) | 向上取整 |
math.floor(x) | 向下取整 |
math.mod(x,y) | 取模运算 |
math.max(z,y,..) | 最大值 |
math.randomseed(os.time()) | 随机数种子 |
math.random(x,y) | x - y 随机数 |