Applied Darok's PhysicsVector ToString patch

Sugilite
MW 2007-07-02 17:48:34 +00:00
parent 858e232cec
commit d1d38f2ede
1 changed files with 5 additions and 0 deletions

View File

@ -50,5 +50,10 @@ namespace OpenSim.Physics.Manager
}
public static readonly PhysicsVector Zero = new PhysicsVector(0f, 0f, 0f);
public override string ToString()
{
return "<" + this.X + "," + this.Y + "," + this.Z + ">";
}
}
}