From b7a0855c3afea27f207655fca25651b19b41636a Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Wed, 14 May 2008 06:09:39 +0000 Subject: More formatting cleanup. Minor refactoring. --- .../DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs') diff --git a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs index d2e565d..a551fde 100644 --- a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs +++ b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs @@ -35,24 +35,29 @@ // { -// public float llSin() { +// public float llSin() +// { // float f = (float)LSLStack.Pop(); // return LSL_Builtins.llSin(f); // } -// public float llCos() { +// public float llCos() +// { // float f = (float)LSLStack.Pop(); // return LSL_Builtins.llCos(f); // } -// public float llTan() { +// public float llTan() +// { // float f = (float)LSLStack.Pop(); // return LSL_Builtins.llTan(f); // } -// public float llAtan2() { +// public float llAtan2() +// { // float x = (float)LSLStack.Pop(); // float y = (float)LSLStack.Pop(); // return LSL_Builtins.llAtan2(x, y); // } -// public float llSqrt() { +// public float llSqrt() +// { // float f = (float)LSLStack.Pop(); // return LSL_Builtins.llSqrt(f); // } -- cgit v1.1