Difference between revisions of "LlCeil/fr"
< LlCeil
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m (Oops) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
|func_id=10|func_sleep=0.0|func_energy=10.0 | |func_id=10|func_sleep=0.0|func_energy=10.0 | ||
|func_footnote | |func_footnote | ||
|p1_type=float|p1_name=val|p1_desc=N’importe quel float | |p1_type=float|p1_name=val|p1_desc=N’importe quel float valide | ||
|return_type=integer | |return_type=integer | ||
|return_text=correspondant à l’arrondi supérieur de '''val''' ( | |return_text=correspondant à l’arrondi supérieur de '''val''' (plus grand ou égal à '''val'''). | ||
|spec | |spec | ||
|caveats | |caveats | ||
Line 13: | Line 13: | ||
state_entry() | state_entry() | ||
{ | { | ||
llSay(0,"L’arrondi supérieur de -4.5 est : "+(string)llCeil(-4.5) ); | llSay(0, "L’arrondi supérieur de -4.5 est : " + (string) llCeil(-4.5) ); | ||
} | } | ||
} | } |
Latest revision as of 11:23, 6 April 2008
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: integer llCeil( float val );10 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un integer correspondant à l’arrondi supérieur de val (plus grand ou égal à val).
• float | val | – | N’importe quel float valide |
Exemples
<lsl> default {
state_entry() { llSay(0, "L’arrondi supérieur de -4.5 est : " + (string) llCeil(-4.5) ); }
} </lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.