Changeset 8284 for code/branches/kicklib2/src/external/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h
- Timestamp:
- Apr 21, 2011, 6:58:23 PM (14 years ago)
- Location:
- code/branches/kicklib2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib2
- Property svn:mergeinfo changed
-
code/branches/kicklib2/src/external/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h
r5781 r8284 1 1 /* 2 2 Bullet Continuous Collision Detection and Physics Library 3 Copyright (c) 2003-200 6 Erwin Coumans http://continuousphysics.com/Bullet/3 Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org 4 4 5 5 This software is provided 'as-is', without any express or implied warranty. … … 13 13 3. This notice may not be removed or altered from any source distribution. 14 14 */ 15 16 15 17 16 #ifndef TRIANGLE_MESH_H … … 42 41 btTriangleMesh (bool use32bitIndices=true,bool use4componentVertices=true); 43 42 44 int findOrAddVertex(const btVector3& vertex, bool removeDuplicateVertices);45 void addIndex(int index);46 47 43 bool getUse32bitIndices() const 48 44 { … … 63 59 virtual void preallocateIndices(int numindices){(void) numindices;} 64 60 61 ///findOrAddVertex is an internal method, use addTriangle instead 62 int findOrAddVertex(const btVector3& vertex, bool removeDuplicateVertices); 63 ///addIndex is an internal method, use addTriangle instead 64 void addIndex(int index); 65 65 66 66 };
Note: See TracChangeset
for help on using the changeset viewer.