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.Tan 正切
static function Tan (f : float) : float
Description描述
Returns the tangent of angle f in radians.
计算并返回以弧度为单位 f 指定角度的正切值。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
print (Mathf.Tan(0.5));
}
}
print (Mathf.Tan(0.5));
最后修改:2011年2月21日 Monday 12:19