More formatting cleanup. Minor refactoring.

This commit is contained in:
Jeff Ames
2008-05-14 06:09:39 +00:00
parent 39eb39c0d5
commit b7a0855c3a
9 changed files with 219 additions and 110 deletions

View File

@@ -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);
// }

View File

@@ -34,7 +34,8 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO
{
//public System.Collections.Generic.Dictionary<Byte, Type> OpCode_Add_Types;
//LSO_Enums() {
//LSO_Enums()
//{
// OpCode_Add_Types.Add(51, typeof(String));
// OpCode_Add_Types.Add(17, typeof(UInt32));
//}