* Applying Xantor's patch 0001089 - Added llRot2Angle, llRot2Axis,llAxisAngle2Rot. Re-implemented llRot2Euler, llEuler2Rot

This commit is contained in:
Teravus Ovares
2008-04-29 13:40:58 +00:00
parent 80ea0b94b9
commit 2ae933a88b
4 changed files with 175 additions and 9 deletions

View File

@@ -1044,9 +1044,9 @@ namespace OpenSim.Region.ScriptEngine.Common
return m_LSL_Functions.llRot2Axis(rot);
}
public void llRot2Angle()
public double llRot2Angle(LSL_Types.Quaternion rot)
{
m_LSL_Functions.llRot2Angle();
return m_LSL_Functions.llRot2Angle(rot);
}
public double llAcos(double val)