Log

From Dragon Age Toolset Wiki
Revision as of 18:16, 17 February 2010 by BryanDerksen (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This article describes the logarithm scripting function. For information on log files, see ECLog.ini

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.