aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/assets/ScriptsAssetSet/llAcos.lsl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/assets/ScriptsAssetSet/llAcos.lsl')
-rw-r--r--bin/assets/ScriptsAssetSet/llAcos.lsl16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/assets/ScriptsAssetSet/llAcos.lsl b/bin/assets/ScriptsAssetSet/llAcos.lsl
index da30a0d..5450bc0 100644
--- a/bin/assets/ScriptsAssetSet/llAcos.lsl
+++ b/bin/assets/ScriptsAssetSet/llAcos.lsl
@@ -1,8 +1,8 @@
1default 1default
2{ 2{
3 state_entry() 3 state_entry()
4 { 4 {
5 float r = llFrand(2) - 1.0; 5 float r = llFrand(2) - 1.0;
6 llOwnerSay("The arccosine of " + (string)r + " is " + llAcos(r)); 6 llOwnerSay("The arccosine of " + (string)r + " is " + llAcos(r));
7 } 7 }
8} 8}