Difference between revisions of "Pow"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (1 revision: Importing auto-generated function articles)
m (looks okay, removing tag)
 
Line 1: Line 1:
{{Generated}}
 
 
{{dafunction
 
{{dafunction
 
|name=pow
 
|name=pow

Latest revision as of 00:22, 18 February 2010

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