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);
        }