diff options
author | Jeff Ames | 2008-10-12 03:16:49 +0000 |
---|---|---|
committer | Jeff Ames | 2008-10-12 03:16:49 +0000 |
commit | fdec8390c15ceddb56002d4d8daa2411d2e42fb7 (patch) | |
tree | 2b4e4a4966096a611aac3cf4fb37acd32a242945 /OpenSim/Framework | |
parent | Add one more check for key presence (diff) | |
download | opensim-SC_OLD-fdec8390c15ceddb56002d4d8daa2411d2e42fb7.zip opensim-SC_OLD-fdec8390c15ceddb56002d4d8daa2411d2e42fb7.tar.gz opensim-SC_OLD-fdec8390c15ceddb56002d4d8daa2411d2e42fb7.tar.bz2 opensim-SC_OLD-fdec8390c15ceddb56002d4d8daa2411d2e42fb7.tar.xz |
Update svn properties, minor formatting cleanup.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/PacketPool.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/SurfaceTouchEventArgs.cs | 34 |
2 files changed, 19 insertions, 19 deletions
diff --git a/OpenSim/Framework/PacketPool.cs b/OpenSim/Framework/PacketPool.cs index 1b486aa..807403e 100644 --- a/OpenSim/Framework/PacketPool.cs +++ b/OpenSim/Framework/PacketPool.cs | |||
@@ -131,10 +131,10 @@ namespace OpenSim.Framework | |||
131 | /// <param name="packet"></param> | 131 | /// <param name="packet"></param> |
132 | public void ReturnPacket(Packet packet) | 132 | public void ReturnPacket(Packet packet) |
133 | { | 133 | { |
134 | if(!packetPoolEnabled) | 134 | if (!packetPoolEnabled) |
135 | return; | 135 | return; |
136 | 136 | ||
137 | switch(packet.Type) | 137 | switch (packet.Type) |
138 | { | 138 | { |
139 | // List pooling packets here | 139 | // List pooling packets here |
140 | case PacketType.PacketAck: | 140 | case PacketType.PacketAck: |
diff --git a/OpenSim/Framework/SurfaceTouchEventArgs.cs b/OpenSim/Framework/SurfaceTouchEventArgs.cs index f34d8ba..1fc83c2 100644 --- a/OpenSim/Framework/SurfaceTouchEventArgs.cs +++ b/OpenSim/Framework/SurfaceTouchEventArgs.cs | |||
@@ -1,17 +1,17 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenMetaverse; | 4 | using OpenMetaverse; |
5 | 5 | ||
6 | namespace OpenSim.Framework | 6 | namespace OpenSim.Framework |
7 | { | 7 | { |
8 | public class SurfaceTouchEventArgs | 8 | public class SurfaceTouchEventArgs |
9 | { | 9 | { |
10 | public Vector3 Binormal; | 10 | public Vector3 Binormal; |
11 | public int FaceIndex; | 11 | public int FaceIndex; |
12 | public Vector3 Normal; | 12 | public Vector3 Normal; |
13 | public Vector3 Position; | 13 | public Vector3 Position; |
14 | public Vector3 STCoord; | 14 | public Vector3 STCoord; |
15 | public Vector3 UVCoord; | 15 | public Vector3 UVCoord; |
16 | } | 16 | } |
17 | } | 17 | } |