static function Exp (power : float) : float
Description描述
Returns e raised to the specified power.
返回 e 的 power 次方的值。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
print(Mathf.Exp(6));
}
}
print(Mathf.Exp(6));