diff options
author | lbsa71 | 2007-10-30 09:05:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-30 09:05:31 +0000 |
commit | 67e12b95ea7b68f4904a7484d77ecfd787d16d0c (patch) | |
tree | 20b00d24c8a7617017960432ec044852e3ad5fa9 /OpenSim/Region/Physics/Manager/PhysicsVector.cs | |
parent | * Deleted .user file (diff) | |
download | opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.zip opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.gz opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.bz2 opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.xz |
* Optimized usings
* Shortened type references
* Removed redundant 'this' qualifier
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsVector.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsVector.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsVector.cs b/OpenSim/Region/Physics/Manager/PhysicsVector.cs index 722c5dd..7de37e4 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsVector.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsVector.cs | |||
@@ -35,7 +35,6 @@ namespace OpenSim.Region.Physics.Manager | |||
35 | 35 | ||
36 | public PhysicsVector() | 36 | public PhysicsVector() |
37 | { | 37 | { |
38 | |||
39 | } | 38 | } |
40 | 39 | ||
41 | public PhysicsVector(float x, float y, float z) | 40 | public PhysicsVector(float x, float y, float z) |
@@ -49,7 +48,7 @@ namespace OpenSim.Region.Physics.Manager | |||
49 | 48 | ||
50 | public override string ToString() | 49 | public override string ToString() |
51 | { | 50 | { |
52 | return "<" + this.X + "," + this.Y + "," + this.Z + ">"; | 51 | return "<" + X + "," + Y + "," + Z + ">"; |
53 | } | 52 | } |
54 | } | 53 | } |
55 | } | 54 | } \ No newline at end of file |