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/llAtan2.lsl | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'bin/assets/ScriptsAssetSet/llAtan2.lsl') diff --git a/bin/assets/ScriptsAssetSet/llAtan2.lsl b/bin/assets/ScriptsAssetSet/llAtan2.lsl index 95e0877..9fc1c63 100644 --- a/bin/assets/ScriptsAssetSet/llAtan2.lsl +++ b/bin/assets/ScriptsAssetSet/llAtan2.lsl @@ -1,11 +1,11 @@ -default -{ - state_entry() - { - float num1 = llFrand(100.0); - float num2 = llFrand(100.0); - llOwnerSay("y = " + (string)num1); - llOwnerSay("x = " + (string)num2); - llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2)); - } -} +default +{ + state_entry() + { + float num1 = llFrand(100.0); + float num2 = llFrand(100.0); + llOwnerSay("y = " + (string)num1); + llOwnerSay("x = " + (string)num2); + llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2)); + } +} -- cgit v1.1