aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/assets/ScriptsAssetSet/llAsin.lsl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/assets/ScriptsAssetSet/llAsin.lsl')
-rw-r--r--bin/assets/ScriptsAssetSet/llAsin.lsl18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/assets/ScriptsAssetSet/llAsin.lsl b/bin/assets/ScriptsAssetSet/llAsin.lsl
index 02e9bd5..ad37ccd 100644
--- a/bin/assets/ScriptsAssetSet/llAsin.lsl
+++ b/bin/assets/ScriptsAssetSet/llAsin.lsl
@@ -1,9 +1,9 @@
1// Touch the object with this script in it to see the arcsine of random numbers! 1// Touch the object with this script in it to see the arcsine of random numbers!
2default 2default
3{ 3{
4 touch_start(integer num) 4 touch_start(integer num)
5 { 5 {
6 float r = llFrand(2) - 1.0; 6 float r = llFrand(2) - 1.0;
7 llOwnerSay("The arcsine of " + (string)r + " is " + llAsin(r)); 7 llOwnerSay("The arcsine of " + (string)r + " is " + llAsin(r));
8 } 8 }
9} 9}