Fix minor race condition where SOP.GetGeometricCenter() and GetCenterOfMass() could return results which were never the case if these values were changed whilst the method was running

No need to create new Vector3s since these are structs.
user_profiles
Justin Clark-Casey (justincc) 2013-04-02 23:48:55 +01:00
parent 68c8633ba1
commit a3c723ee30
1 changed files with 4 additions and 4 deletions

View File

@ -2136,9 +2136,9 @@ namespace OpenSim.Region.Framework.Scenes
PhysicsActor pa = PhysActor;
if (pa != null)
return new Vector3(pa.GeometricCenter.X, pa.GeometricCenter.Y, pa.GeometricCenter.Z);
return pa.GeometricCenter;
else
return new Vector3(0, 0, 0);
return Vector3.Zero;
}
public Vector3 GetCenterOfMass()
@ -2146,9 +2146,9 @@ namespace OpenSim.Region.Framework.Scenes
PhysicsActor pa = PhysActor;
if (pa != null)
return new Vector3(pa.CenterOfMass.X, pa.CenterOfMass.Y, pa.CenterOfMass.Z);
return pa.CenterOfMass;
else
return new Vector3(0, 0, 0);
return Vector3.Zero;
}
public float GetMass()