Difference between revisions of "LlVecNorm/fr"
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m (Orthographe) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
|func_id=13|func_sleep=0.0|func_energy=10.0 | |func_id=13|func_sleep=0.0|func_energy=10.0 | ||
|func_footnote | |func_footnote | ||
|p1_type=vector|p1_name=vec|p1_desc=N’importe quel | |p1_type=vector|p1_name=vec|p1_desc=N’importe quel vecteur valide | ||
|return_type=vector | |return_type=vector | ||
|return_text=correspondant au | |return_text=correspondant au vecteur '''vec''' normalisé ('''vec''' / {{LSLG/fr|llVecMag}}('''vec''')). | ||
|spec | |spec | ||
|caveats | |caveats | ||
|examples= | |examples= | ||
< | <lsl> | ||
default { | default | ||
{ | |||
state_entry() | state_entry() | ||
{ | { | ||
vector input = <1.0,2.0,3.0>; | vector input = <1.0, 2.0, 3.0>; | ||
llSay(0,"Le | llSay(0, "Le vecteur normalisé de " + (string) input + " est : " + (string) llVecNorm(input) ); | ||
} | } | ||
} | } | ||
</ | </lsl> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||{{LSLG/fr|llVecMag}}|Renvoie la | |also_functions={{LSL DefineRow||{{LSLG/fr|llVecMag}}|Renvoie la norme d'un vecteur}} | ||
{{LSL DefineRow||{{LSLG/fr|llVecDist}}|Renvoie la distance entre deux | {{LSL DefineRow||{{LSLG/fr|llVecDist}}|Renvoie la distance entre deux vecteurs.}} | ||
|also_events | |also_events | ||
|also_tests | |also_tests |
Latest revision as of 08:00, 12 August 2010
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 vecteur vec normalisé (vec / llVecMag(vec)).
• vector | vec | – | N’importe quel vecteur valide |
Exemples
<lsl> default {
state_entry() { vector input = <1.0, 2.0, 3.0>; llSay(0, "Le vecteur 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.