Mathf.Exp
static function Exp(power: float): float;
static float Exp(float power);
static def Exp(power as float) as float
Description

Returns e raised to the specified power.

	print(Mathf.Exp(6));
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(Mathf.Exp(6));
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print(Mathf.Exp(6))