Difference between revisions of "LlAsin/fr"
< LlAsin
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
m (fix) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 8: | Line 8: | ||
|p1_type=float | |p1_type=float | ||
|p1_name=val | |p1_name=val | ||
|p1_desc=doit être dans | |p1_desc=doit être dans l'intervalle [-1.0, 1.0]. (-1.0 <{{=}} '''val''' <{{=}} 1.0) | ||
|return_text=correspondant à | |return_text=correspondant à l’arc sinus en radians de '''val''' | ||
|spec|caveats | |spec|caveats | ||
|examples=<lsl>// Touchez l’objet | |examples=<lsl>// Touchez l’objet contenant ce script pour voir l’arc sinus de nombres aléatoires ! | ||
default | default | ||
{ | { | ||
Line 17: | Line 17: | ||
{ | { | ||
float r = llFrand(2) - 1.0; | float r = llFrand(2) - 1.0; | ||
llOwnerSay(" | llOwnerSay("L’arc sinus de " + (string) r + " est " + llAsin(r)); | ||
} | } | ||
}</lsl> | }</lsl> | ||
Line 23: | Line 23: | ||
|also_functions= | |also_functions= | ||
{{LSL DefineRow|[[llSin/fr|llSin]]||Sinus}} | {{LSL DefineRow|[[llSin/fr|llSin]]||Sinus}} | ||
{{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus & cosinus | {{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus & arc cosinus}} | ||
{{LSL DefineRow|[[llTan/fr|llTan]]|[[llAtan2 | {{LSL DefineRow|[[llTan/fr|llTan]]|[[llAtan2/fr|llAtan2]]|Tangente & arc tangente}} | ||
|also_articles={{LSL DefineRow||{{wikipedia|Inverse_trigonometric_function}}|Article sur les fonctions trigonométriques | |also_articles={{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 13:31, 16 November 2008
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: float llAsin( float val );173 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un float correspondant à l’arc sinus en radians de val
• float | val | – | doit être dans l'intervalle [-1.0, 1.0]. (-1.0 <= val <= 1.0) |
Exemples
<lsl>// Touchez l’objet contenant ce script pour voir l’arc sinus de nombres aléatoires ! default {
touch_start(integer num) { float r = llFrand(2) - 1.0; llOwnerSay("L’arc sinus de " + (string) r + " est " + llAsin(r)); }
}</lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.