Returns a number rounded to the smallest integer value greater than or equal to a floating point number.
float ceil(float number)
number is the number you want to round.
Examples
ceil(2.344)
Returns 3.
ceil(3.0)
ceil(Rock.scaleY)
If Rock.scaleY contains -2.82, this returns -2.