From 20215c3d30fb55bf232bff1b3d6652d82e00b798 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sat, 26 Jan 2008 10:34:49 +0000 Subject: Rewrote svn properties handling script in python. Added more file types. --- bin/assets/ScriptsAssetSet/llAsin.lsl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'bin/assets/ScriptsAssetSet/llAsin.lsl') 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 @@ -// Touch the object with this script in it to see the arcsine of random numbers! -default -{ - touch_start(integer num) - { - float r = llFrand(2) - 1.0; - llOwnerSay("The arcsine of " + (string)r + " is " + llAsin(r)); - } -} +// Touch the object with this script in it to see the arcsine of random numbers! +default +{ + touch_start(integer num) + { + float r = llFrand(2) - 1.0; + llOwnerSay("The arcsine of " + (string)r + " is " + llAsin(r)); + } +} -- cgit v1.1