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

