static function CeilToInt (f : float) : int
Description描述
Returns the smallest integer greater to or equal to f.
返回最小的整数大于或等于f。
C#JavaScript
// Prints 10
Debug.Log(Mathf.CeilToInt(10.0));
// Prints 11
Debug.Log(Mathf.CeilToInt(10.2));
// Prints 11
Debug.Log(Mathf.CeilToInt(10.7));
// Prints -10
Debug.Log(Mathf.CeilToInt(-10.0));
// Prints -10
Debug.Log(Mathf.CeilToInt(-10.2));
// Prints -10
Debug.Log(Mathf.CeilToInt(-10.7));
Mathf.CeilToInt 最小整数 (unity3d mathf)
最新推荐文章于 2025-06-05 18:23:48 发布