LIST STAT RANGE
Revision as of 15:59, 23 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer LIST_STAT_RANGE = 0;The integer constant LIST_STAT_RANGE has the value 0
Calculates the range of the list. (max - min)
Caveats
Related Articles
Functions
• | llListStatistics |
Examples
float range = llListStatistics( LIST_STAT_RANGE, numList );
float max = llListStatistics( LIST_STAT_MAX, numList );
float min = llListStatistics( LIST_STAT_MIN, numList );
float range = max - min;