Patcher.Rules.Compiled.Helpers.Math.Ceiling C# (CSharp) Method

Ceiling() public static method

Returns the smallest integer value which is greater or equal to the specified floating point number.
public static Ceiling ( float a ) : int
a float Floating point value to ceil.
return int
        public static int Ceiling(float a)
        {
            return (int)System.Math.Ceiling(a);
        }