Difference between revisions of "LlAtan2/fr"
< LlAtan2
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m (Big proofreading) |
||
Line 2: | Line 2: | ||
|func_id=3|func_sleep=0.0|func_energy=10.0 | |func_id=3|func_sleep=0.0|func_energy=10.0 | ||
|func=llAtan2|sort=Atan2 | |func=llAtan2|sort=Atan2 | ||
|func_footnote= | |func_footnote=Semblable à arctangente(y/x), sauf qu'elle utilise le signe de x et de y pour déterminer le quadrant. Renvoie zero si x et y sont nuls. | ||
|p1_type=float|p1_name=y|p1_desc | |p1_type=float|p1_name=y|p1_desc | ||
|p2_type=float|p2_name=x|p2_desc | |p2_type=float|p2_name=x|p2_desc | ||
Line 18: | Line 18: | ||
float num2 = llFrand(100.0); | float num2 = llFrand(100.0); | ||
llOwnerSay("y = " + (string)num1); | llOwnerSay("y = " + (string) num1); | ||
llOwnerSay("x = " + (string)num2); | llOwnerSay("x = " + (string) num2); | ||
llOwnerSay(" | llOwnerSay("L'arc tangente de y divisé par x est " + (string) llAtan2(num1, num2)); | ||
} | } | ||
} | } | ||
Line 27: | Line 27: | ||
|helpers | |helpers | ||
|also_functions= | |also_functions= | ||
{{LSL DefineRow|[[llSin/fr|llSin]]|[[llAsin/fr|llAsin]]|Sinus | {{LSL DefineRow|[[llSin/fr|llSin]]|[[llAsin/fr|llAsin]]|Sinus et arc sinus}} | ||
{{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus | {{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus et arc cosinus}} | ||
{{LSL DefineRow|[[llTan/fr|llTan]]|| | {{LSL DefineRow|[[llTan/fr|llTan]]||Tangente}} | ||
|also_articles= | |also_articles= | ||
{{LSL DefineRow||{{wikipedia|Atan2}}|Article sur l’arctangente2}} | {{LSL DefineRow||{{wikipedia|Atan2}}|Article sur l’arctangente2}} | ||
{{LSL DefineRow||{{wikipedia|Inverse_trigonometric_function}}|Article sur les fonctions trigonométriques | {{LSL DefineRow||{{wikipedia|Inverse_trigonometric_function}}|Article sur les fonctions trigonométriques réciproques}} | ||
|notes | |notes | ||
|cat1=Math/Trigonometry/fr | |cat1=Math/Trigonometry/fr |
Latest revision as of 06:35, 5 April 2008
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: float llAtan2( float y, float x );3 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un float correspondant à l’ arctangente2 de y, x.
• float | y | |||
• float | x |
Semblable à arctangente(y/x), sauf qu'elle utilise le signe de x et de y pour déterminer le quadrant. Renvoie zero si x et y sont nuls.
Exemples
<lsl> default {
state_entry() { float num1 = llFrand(100.0); float num2 = llFrand(100.0);
llOwnerSay("y = " + (string) num1); llOwnerSay("x = " + (string) num2);
llOwnerSay("L'arc tangente de y divisé par x est " + (string) llAtan2(num1, num2)); }
} </lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.