LlTan/fr

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Fonction: float llTan( float A );

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

Fonctions

• llSin llAsin Sinus & Arc sinus
• llCos llAcos Cosinus & Arc cosinus
•  llAtan2 Tangente & Arc tangente
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.