LlTan/fr
From Second Life Wiki
Page Principale > LlTan > LlTan/fr
| LSL Portal | 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
// 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)); } }
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.

