aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/assets/ScriptsAssetSet/llAsin.lsl
diff options
context:
space:
mode:
authorJeff Ames2008-01-26 10:34:49 +0000
committerJeff Ames2008-01-26 10:34:49 +0000
commit20215c3d30fb55bf232bff1b3d6652d82e00b798 (patch)
tree19fce94014cafb1a235b3874b7bde8bc92767415 /bin/assets/ScriptsAssetSet/llAsin.lsl
parentRemoved ScriptServer.csproj from svn. (diff)
downloadopensim-SC_OLD-20215c3d30fb55bf232bff1b3d6652d82e00b798.zip
opensim-SC_OLD-20215c3d30fb55bf232bff1b3d6652d82e00b798.tar.gz
opensim-SC_OLD-20215c3d30fb55bf232bff1b3d6652d82e00b798.tar.bz2
opensim-SC_OLD-20215c3d30fb55bf232bff1b3d6652d82e00b798.tar.xz
Rewrote svn properties handling script in python. Added more file types.
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}