Pow

From Dragon Age Toolset Wiki
Jump to: navigation, search

Returns a base value to an exponent.

float pow(
float fValue,
float fExponent
);
Parameters:
fValue
Base value
fExponent
Exponent value
Returns:

The value of fValue raised to the power of fExponent.

Source:

script.ldf

Description

Returns the float fValue raised to the power of float fExponent.


See also

sqrt