diff options
author | MW | 2007-07-02 17:48:34 +0000 |
---|---|---|
committer | MW | 2007-07-02 17:48:34 +0000 |
commit | d1d38f2edea6d4731fdae964a53f36fbfd9a708d (patch) | |
tree | b84fa48ebdd86c0210aa5f6514f034e5dfb60e63 | |
parent | * Added "HiRAW" mode export for generating as precise outputs as possible in ... (diff) | |
download | opensim-SC-d1d38f2edea6d4731fdae964a53f36fbfd9a708d.zip opensim-SC-d1d38f2edea6d4731fdae964a53f36fbfd9a708d.tar.gz opensim-SC-d1d38f2edea6d4731fdae964a53f36fbfd9a708d.tar.bz2 opensim-SC-d1d38f2edea6d4731fdae964a53f36fbfd9a708d.tar.xz |
Applied Darok's PhysicsVector ToString patch
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsVector.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsVector.cs b/OpenSim/Region/Physics/Manager/PhysicsVector.cs index 888dbb5..c60da9d 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsVector.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsVector.cs | |||
@@ -50,5 +50,10 @@ namespace OpenSim.Physics.Manager | |||
50 | } | 50 | } |
51 | 51 | ||
52 | public static readonly PhysicsVector Zero = new PhysicsVector(0f, 0f, 0f); | 52 | public static readonly PhysicsVector Zero = new PhysicsVector(0f, 0f, 0f); |
53 | |||
54 | public override string ToString() | ||
55 | { | ||
56 | return "<" + this.X + "," + this.Y + "," + this.Z + ">"; | ||
57 | } | ||
53 | } | 58 | } |
54 | } | 59 | } |