LlFloor/fr

From Second Life Wiki
< LlFloor
Revision as of 11:20, 14 February 2008 by Gally Young (talk | contribs) (Localized to french)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

Fonction: integer llFloor( float val );

Renvoie un integer correspondant à l’arrondi inférieur de val (<= val).

• float val N’importe quel float

Exemples

<lsl>default {

  state_entry()
  {
      llSay(0,"L’arrrondi inférieur de -4.5 est : "+(string)llFloor(-4.5) );
  }

}</lsl>

Voir également

Fonctions

•  llRound Renvoie l’arrondi le plus proche
•  llCeil Renvoie l’arrondi supérieur.
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.