Patcher.Rules.Compiled.Helpers.Math.Ceiling C# (CSharp) Метод

Ceiling() публичный статический Метод

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.
Результат int
        public static int Ceiling(float a)
        {
            return (int)System.Math.Ceiling(a);
        }