Changeset 7983 for code/branches/kicklib/src/external/bullet/BulletCollision/CollisionShapes/btConvexPointCloudShape.cpp
- Timestamp:
- Feb 27, 2011, 7:43:24 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/external/bullet/BulletCollision/CollisionShapes/btConvexPointCloudShape.cpp
r5781 r7983 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 15 16 #include "btConvexPointCloudShape.h" 16 17 #include "BulletCollision/CollisionShapes/btCollisionMargin.h" … … 28 29 { 29 30 btVector3 supVec(btScalar(0.),btScalar(0.),btScalar(0.)); 30 btScalar newDot,maxDot = btScalar(- 1e30);31 btScalar newDot,maxDot = btScalar(-BT_LARGE_FLOAT); 31 32 32 33 btVector3 vec = vec0; … … 63 64 for (int i=0;i<numVectors;i++) 64 65 { 65 supportVerticesOut[i][3] = btScalar(- 1e30);66 supportVerticesOut[i][3] = btScalar(-BT_LARGE_FLOAT); 66 67 } 67 68 }
Note: See TracChangeset
for help on using the changeset viewer.