Difference between revisions of "LlVecDist/fr"
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m |
||
Line 11: | Line 11: | ||
|caveats | |caveats | ||
|constants | |constants | ||
|examples=< | |examples=<lsl> | ||
default { | default | ||
{ | |||
state_entry() | state_entry() | ||
{ | { | ||
Line 20: | Line 21: | ||
} | } | ||
} | } | ||
</ | </lsl> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||[[llVecMag/fr|llVecMag]]|Renvoie la magnitude d’un vector}} | |also_functions={{LSL DefineRow||[[llVecMag/fr|llVecMag]]|Renvoie la magnitude d’un vector}} |
Latest revision as of 06:07, 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: float llVecDist( vector vec_a, vector vec_b );14 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un float correspondant la distance (non directionnelle et non négative) entre les vectors vec_a and vec_b
(llVecMag(vec_a-vec_b)).
• vector | vec_a | – | N'importe quel vector valide | |
• vector | vec_b | – | N'importe quel vector valide |
Exemples
<lsl> default {
state_entry() { vector input_1 = <1.0,2.0,3.0>; vector input_2 = <3.0,2.0,1.0>; llOwnerSay("La distance entre " + (string) input_1 + " et " + (string) input_2 + " est : "+(string)llVecDist(input_1, input_2) ); }
} </lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.