Difference between revisions of "LIST STAT RANGE/fr"

From Second Life Wiki
Jump to navigation Jump to search
m (Translated)
 
m (Proofread)
 
Line 14: Line 14:
|constants=
|constants=
|functions=
|functions=
{{LSL DefineRow||[[llListStatistics]]|Applique des fonctions mathématiques à des lists}}
{{LSL DefineRow||[[llListStatistics/fr|llListStatistics]]|Applique des fonctions mathématiques à des lists}}
|events=
|events=
|location
|location

Latest revision as of 11:03, 16 June 2008

Description

Constante: integer LIST_STAT_RANGE = 0;

La constante LIST_STAT_RANGE de type integer a la valeur 0

Calcule l'amplitude d'un list. (max - min)

Articles connexes

Fonctions

•  llListStatistics Applique des fonctions mathématiques à des lists

Exemples

<lsl>float amplitude = llListStatistics( LIST_STAT_RANGE, numList );</lsl>

<lsl>float max = llListStatistics( LIST_STAT_MAX, numList ); float min = llListStatistics( LIST_STAT_MIN, numList ); float amplitude = max - min;</lsl>