Patcher.Rules.Compiled.Helpers.Math.Ceiling C# (CSharp) Méthode

Ceiling() public static méthode

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.
Résultat int
        public static int Ceiling(float a)
        {
            return (int)System.Math.Ceiling(a);
        }