aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs
diff options
context:
space:
mode:
authorJeff Ames2008-03-18 05:16:43 +0000
committerJeff Ames2008-03-18 05:16:43 +0000
commit47180080f0f4b93c60232b47ca4e093bd7c73a1d (patch)
tree780f51135995bb4be311e6f2b331cfa5c4b16d9d /OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs
parentAdded copyright messages. Set svn:eol-style. Minor cleanup. (diff)
downloadopensim-SC_OLD-47180080f0f4b93c60232b47ca4e093bd7c73a1d.zip
opensim-SC_OLD-47180080f0f4b93c60232b47ca4e093bd7c73a1d.tar.gz
opensim-SC_OLD-47180080f0f4b93c60232b47ca4e093bd7c73a1d.tar.bz2
opensim-SC_OLD-47180080f0f4b93c60232b47ca4e093bd7c73a1d.tar.xz
Formatting cleanup.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs33
1 files changed, 16 insertions, 17 deletions
diff --git a/OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs b/OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs
index e73c953..0902077 100644
--- a/OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs
+++ b/OpenSim/Region/Physics/BulletXPlugin/TriangleIndexVertexArray.cs
@@ -11,27 +11,26 @@
11 freely, subject to the following restrictions: 11 freely, subject to the following restrictions:
12 12
13 1. The origin of this software must not be misrepresented; you must not 13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software 14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be 15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required. 16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be 17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software. 18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution. 19 3. This notice may not be removed or altered from any source distribution.
20*/ 20*/
21 21
22/* 22/*
23 23 This file contains a class TriangleIndexVertexArray. I tried using the class with the same name
24 This file contains a class TriangleIndexVertexArray. I tried using the class with the same name 24 from the BulletX implementation and found it unusable for the purpose of using triangle meshes
25 from the BulletX implementation and found it unusable for the purpose of using triangle meshes 25 within BulletX as the implementation was painfully incomplete.
26 within BulletX as the implementation was painfully incomplete. 26 The attempt to derive from the original class failed as viable members were hidden.
27 The attempt to derive from the original class failed as viable members were hidden. 27 Fiddling around with BulletX itself was not my intention.
28 Fiddling around with BulletX itself was not my intention. 28 So I copied the class to the BulletX-plugin and modified it.
29 So I copied the class to the BulletX-plugin and modified it. 29 If you want to fiddle around with it it's up to you to move all this to BulletX.
30 If you want to fiddle around with it it's up to you to move all this to BulletX. 30 If someone someday implements the missing functionality in BulletX, feel free to remove this class.
31 If someone someday implements the missing functionality in BulletX, feel free to remove this class. 31 It's just an ugly hack.
32 It's just an ugly hack. 32*/
33 33
34 */
35using System; 34using System;
36using System.Collections.Generic; 35using System.Collections.Generic;
37using MonoXnaCompactMaths; 36using MonoXnaCompactMaths;
@@ -195,4 +194,4 @@ namespace OpenSim.Region.Physics.BulletXPlugin
195 throw new Exception("The method or operation is not implemented."); 194 throw new Exception("The method or operation is not implemented.");
196 } 195 }
197 } 196 }
198} \ No newline at end of file 197}