Type Function Library math.* Return value Number Revision Release 2024.3703 Keywords floor See also math.ceil()
math.round()
Returns the integer smaller than or equal to x
.
print( math.floor(0.5) ) ---> 0 print( math.floor(-0.5) ) ---> -1