Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


exp

Returns the base-e exponential of x.
Read time 1 minuteLast updated 5 days ago

Definition

exp(float)

Returns the base-e exponential of x.
public static float exp(float x)

Parameters

Input value.

Returns

Type

Description

floatThe base-e exponential of the input.

exp(float2)

Returns the componentwise base-e exponential of x.
public static float2 exp(float2 x)

Parameters

Input value.

Returns

Type

Description

float2The componentwise base-e exponential of the input.

exp(float3)

Returns the componentwise base-e exponential of x.
public static float3 exp(float3 x)

Parameters

Input value.

Returns

Type

Description

float3The componentwise base-e exponential of the input.

exp(float4)

Returns the componentwise base-e exponential of x.
public static float4 exp(float4 x)

Parameters

Input value.

Returns

Type

Description

float4The componentwise base-e exponential of the input.

exp(double)

Returns the base-e exponential of x.
public static double exp(double x)

Parameters

Input value.

Returns

Type

Description

doubleThe base-e exponential of the input.

exp(double2)

Returns the componentwise base-e exponential of x.
public static double2 exp(double2 x)

Parameters

Input value.

Returns

Type

Description

double2The componentwise base-e exponential of the input.

exp(double3)

Returns the componentwise base-e exponential of x.
public static double3 exp(double3 x)

Parameters

Input value.

Returns

Type

Description

double3The componentwise base-e exponential of the input.

exp(double4)

Returns the componentwise base-e exponential of x.
public static double4 exp(double4 x)

Parameters

Input value.

Returns

Type

Description

double4The componentwise base-e exponential of the input.

exp(quaternion)

Returns the natural exponent of a quaternion.
public static quaternion exp(quaternion q)

Parameters

The quaternion.

Returns

Type

Description

quaternionThe natural exponent of the input quaternion.