The ceiling is the largest integer greater than or equal to the provided number.
world.log << ceil(1.00001) // 2
world.log << ceil(-0.00001) // 0
The ceiling is the largest integer greater than or equal to the provided number.
world.log << ceil(1.00001) // 2
world.log << ceil(-0.00001) // 0