Merge branch 'avination'

This commit is contained in:
Melanie
2012-05-02 00:33:56 +02:00
5 changed files with 138 additions and 114 deletions

View File

@@ -8401,7 +8401,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Vector llGetGeometricCenter()
{
return new LSL_Vector(m_host.GetGeometricCenter().X, m_host.GetGeometricCenter().Y, m_host.GetGeometricCenter().Z);
Vector3 tmp = m_host.GetGeometricCenter();
return new LSL_Vector(tmp.X, tmp.Y, tmp.Z);
}
public LSL_List llGetPrimitiveParams(LSL_List rules)