diff options
Diffstat (limited to 'bin/assets/ScriptsAssetSet/llAcos.lsl')
-rw-r--r-- | bin/assets/ScriptsAssetSet/llAcos.lsl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/assets/ScriptsAssetSet/llAcos.lsl b/bin/assets/ScriptsAssetSet/llAcos.lsl new file mode 100644 index 0000000..da30a0d --- /dev/null +++ b/bin/assets/ScriptsAssetSet/llAcos.lsl | |||
@@ -0,0 +1,8 @@ | |||
1 | default | ||
2 | { | ||
3 | state_entry() | ||
4 | { | ||
5 | float r = llFrand(2) - 1.0; | ||
6 | llOwnerSay("The arccosine of " + (string)r + " is " + llAcos(r)); | ||
7 | } | ||
8 | } | ||