llGetGeometricCenter...

This commit is contained in:
UbitUmarov
2012-04-29 06:39:09 +01:00
parent c7c0d5558b
commit 84b5b3e89b
2 changed files with 16 additions and 3 deletions

View File

@@ -8527,7 +8527,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)