mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
More formatting cleanup. Minor refactoring.
This commit is contained in:
@@ -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);
|
||||
// }
|
||||
|
||||
@@ -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));
|
||||
//}
|
||||
|
||||
Reference in New Issue
Block a user