Difference between revisions of "LlVecNorm/fr"
Jump to navigation
Jump to search
m (Orthographe) |
m (orthographe) |
||
Line 5: | Line 5: | ||
|p1_type=vector|p1_name=vec|p1_desc=N’importe quel vector valide | |p1_type=vector|p1_name=vec|p1_desc=N’importe quel vector 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 | ||
Line 14: | Line 14: | ||
state_entry() | state_entry() | ||
{ | { | ||
vector input = <1.0,2.0,3.0>; | vector input = <1.0, 2.0, 3.0>; | ||
llSay(0, "Le vecteur normalisé de " + (string) input + " est : " + (string) llVecNorm(input) ); | llSay(0, "Le vecteur normalisé de " + (string) input + " est : " + (string) llVecNorm(input) ); | ||
} | } | ||
Line 20: | Line 20: | ||
</lsl> | </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 |
Revision as of 07:59, 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 vector 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.