Applied Darok's PhysicsVector ToString patch

This commit is contained in:
MW
2007-07-02 17:48:34 +00:00
parent 858e232cec
commit d1d38f2ede

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 + ">";
}
}
}