Mathf
- Abs
- Acos
- Approximately
- Asin
- Atan2
- Atan
- CeilToInt
- Ceil
- Clamp01
- Clamp
- ClosestPowerOfTwo
- Cos
- Deg2Rad
- DeltaAngle
- Epsilon
- Exp
- FloorToInt
- Floor
- Infinity
- InverseLerp
- IsPowerOfTwo
- LerpAngle
- Lerp
- Log10
- Log
- Max
- Min
- MoveTowardsAngle
- MoveTowards
- NegativeInfinity
- NextPowerOfTwo
- PingPong
- PI
- Pow
- Rad2Deg
- Repeat
- RoundToInt
- Round
- Sign
- Sin
- SmoothDampAngle
- SmoothDamp
- SmoothStep
- Sqrt
- Tan
Mathf.Floor 下限值
static function Floor (f : float) : float
Description描述
Returns the largest integer smaller to or equal to f.
返回参数 f 中指定的数字或表达式的下限值。下限值是小于等于指定数字或表达式的最接近的整数。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
Debug.Log(Mathf.Floor(10.0F));
Debug.Log(Mathf.Floor(10.2F));
Debug.Log(Mathf.Floor(10.7F));
Debug.Log(Mathf.Floor(-10.0F));
Debug.Log(Mathf.Floor(-10.2F));
Debug.Log(Mathf.Floor(-10.7F));
}
}
最后修改:2011年2月22日 Tuesday 20:30