LlFloor/fr

From Second Life Wiki
< LlFloor
Revision as of 13:06, 8 May 2008 by Catherine Pfeffer (talk | contribs) (Forgot this one)
(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 nombre en virgule flottante

Exemples

<lsl>default {

  state_entry()
  {
      llSay(0, "La partie entière 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.