Mathf.Exp
public static float Exp(float power);
Description 描述
Returns e raised to the specified power.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { print(Mathf.Exp(6)); } }
Returns e raised to the specified power.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { print(Mathf.Exp(6)); } }