static function CeilToInt (f : float) : int
Description描述
Returns the smallest integer greater to or equal to f.
返回最小的整数大于或等于f。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
Debug.Log(Mathf.CeilToInt(10.0F));
Debug.Log(Mathf.CeilToInt(10.2F));
Debug.Log(Mathf.CeilToInt(10.7F));
Debug.Log(Mathf.CeilToInt(-10.0F));
Debug.Log(Mathf.CeilToInt(-10.2F));
Debug.Log(Mathf.CeilToInt(-10.7F));
}
}