*Removed OSVector3 and replaced with libsecondlife.LLVector3

This commit is contained in:
mingchen
2007-06-11 17:58:14 +00:00
parent 009bba7cdd
commit 304ebe22a2
6 changed files with 54 additions and 81 deletions

View File

@@ -118,9 +118,9 @@ namespace OpenSim.Region
/// </summary>
/// <param name="localID"></param>
/// <returns></returns>
public OSVector3 GetEntityPosition(uint localID)
public LLVector3 GetEntityPosition(uint localID)
{
OSVector3 res = new OSVector3();
LLVector3 res = new LLVector3();
// Console.WriteLine("script- getting entity " + localID + " position");
foreach (Entity entity in this.Entities.Values)
{