Difference between revisions of "Log"

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=log
 
|name=log

Revision as of 01:04, 11 February 2010

Returns the log of a float.

float log(
float fValue
);
Parameters:
fValue
The floating point number to calculate the natural log of
Returns:

Returns the natural log of fValue, 0 on error.

Source:

script.ldf

Description

Returns the natural logarithm of the float fValue.

Remarks

The log function only exists for values > 0.0f, a value of 0.0f or less will return 0.0f.