Version: 2022.3
언어: 한국어
public static float Exp (float power);

설명

Returns e raised to the specified power.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { print(Mathf.Exp(6)); } }