LlTan/fr: Difference between revisions
< LlTan
Gally Young (talk | contribs) Localized to french |
poofreading |
||
| Line 20: | Line 20: | ||
|helpers | |helpers | ||
|also_functions= | |also_functions= | ||
{{LSL DefineRow|[[llSin/fr|llSin]]|[[llAsin/fr|llAsin]]|Sinus & sinus | {{LSL DefineRow|[[llSin/fr|llSin]]|[[llAsin/fr|llAsin]]|Sinus & Arc sinus}} | ||
{{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus & cosinus | {{LSL DefineRow|[[llCos/fr|llCos]]|[[llAcos/fr|llAcos]]|Cosinus & Arc cosinus}} | ||
{{LSL DefineRow||[[llAtan2/fr|llAtan2]]|Tangente & tangente | {{LSL DefineRow||[[llAtan2/fr|llAtan2]]|Tangente & Arc tangente}} | ||
|also_events | |also_events | ||
|also_articles | |also_articles | ||
Latest revision as of 00:41, 27 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 llTan( float A );| 2 | N° de fonction |
| 0.0 | Delais |
| 10.0 | Energie |
Renvoie un float correspondant à la tangente de A.
| • float | A | – | angle en radians. |
Exemples
<lsl>// touchez l'objet pour voir la tangente de nombres aléatoires! default {
touch_start(integer num)
{
float r = llFrand(TWO_PI);
llOwnerSay("La tangente de " + (string)r + " en radians ou " + (string)(r * RAD_TO_DEG) + " degrés est " + (string)Tan(r));
}
}</lsl>
Voir également
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.