Difference between revisions of "LlVecNorm/fr"
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m |
||
Line 9: | Line 9: | ||
|caveats | |caveats | ||
|examples= | |examples= | ||
< | <lsl> | ||
default { | default { | ||
state_entry() | state_entry() | ||
Line 17: | Line 17: | ||
} | } | ||
} | } | ||
</ | </lsl> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||{{LSLG/fr|llVecMag}}|Renvoie la magnitude d’un vector}} | |also_functions={{LSL DefineRow||{{LSLG/fr|llVecMag}}|Renvoie la magnitude d’un vector}} |
Revision as of 05:41, 18 June 2008
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: vector llVecNorm( vector vec );13 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un vector correspondant au vector vec normalisé (vec / llVecMag(vec)).
• vector | vec | – | N’importe quel vector valide |
Exemples
<lsl> default {
state_entry() { vector input = <1.0,2.0,3.0>; llSay(0,"Le vector normalisé de "+(string)input+" est : "+(string)llVecNorm(input) ); }
} </lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.