- Timestamp:
- May 3, 2011, 5:07:42 AM (14 years ago)
- Location:
- code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h
r8351 r8393 17 17 // 3. This notice may not be removed or altered from any source distribution. 18 18 19 #ifndef AXIS_SWEEP_3_H20 #define AXIS_SWEEP_3_H19 #ifndef BT_AXIS_SWEEP_3_H 20 #define BT_AXIS_SWEEP_3_H 21 21 22 22 #include "LinearMath/btVector3.h" -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h
r8351 r8393 14 14 */ 15 15 16 #ifndef B ROADPHASE_INTERFACE_H17 #define B ROADPHASE_INTERFACE_H16 #ifndef BT_BROADPHASE_INTERFACE_H 17 #define BT_BROADPHASE_INTERFACE_H 18 18 19 19 … … 80 80 }; 81 81 82 #endif //B ROADPHASE_INTERFACE_H82 #endif //BT_BROADPHASE_INTERFACE_H -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h
r8351 r8393 14 14 */ 15 15 16 #ifndef B ROADPHASE_PROXY_H17 #define B ROADPHASE_PROXY_H16 #ifndef BT_BROADPHASE_PROXY_H 17 #define BT_BROADPHASE_PROXY_H 18 18 19 19 #include "LinearMath/btScalar.h" //for SIMD_FORCE_INLINE … … 267 267 268 268 269 #endif //B ROADPHASE_PROXY_H270 269 #endif //BT_BROADPHASE_PROXY_H 270 -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h
r5781 r8393 14 14 */ 15 15 16 #ifndef COLLISION_ALGORITHM_H17 #define COLLISION_ALGORITHM_H16 #ifndef BT_COLLISION_ALGORITHM_H 17 #define BT_COLLISION_ALGORITHM_H 18 18 19 19 #include "LinearMath/btScalar.h" … … 45 45 btPersistentManifold* m_manifold; 46 46 47 int getDispatcherId();47 // int getDispatcherId(); 48 48 49 49 }; … … 60 60 61 61 protected: 62 int getDispatcherId();62 // int getDispatcherId(); 63 63 64 64 public: … … 78 78 79 79 80 #endif // COLLISION_ALGORITHM_H80 #endif //BT_COLLISION_ALGORITHM_H -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h
r8351 r8393 14 14 */ 15 15 16 #ifndef _DISPATCHER_H 17 #define _DISPATCHER_H 18 16 #ifndef BT_DISPATCHER_H 17 #define BT_DISPATCHER_H 19 18 #include "LinearMath/btScalar.h" 20 19 … … 28 27 class btPersistentManifold; 29 28 class btStackAlloc; 29 class btPoolAllocator; 30 30 31 31 struct btDispatcherInfo … … 41 41 m_dispatchFunc(DISPATCH_DISCRETE), 42 42 m_timeOfImpact(btScalar(1.)), 43 m_useContinuous( false),43 m_useContinuous(true), 44 44 m_debugDraw(0), 45 45 m_enableSatConvex(false), … … 49 49 m_useConvexConservativeDistanceUtil(false), 50 50 m_convexConservativeDistanceThreshold(0.0f), 51 m_convexMaxDistanceUseCPT(false),52 51 m_stackAllocator(0) 53 52 { … … 66 65 bool m_useConvexConservativeDistanceUtil; 67 66 btScalar m_convexConservativeDistanceThreshold; 68 bool m_convexMaxDistanceUseCPT;69 67 btStackAlloc* m_stackAllocator; 70 68 }; … … 99 97 virtual btPersistentManifold** getInternalManifoldPointer() = 0; 100 98 99 virtual btPoolAllocator* getInternalManifoldPool() = 0; 100 101 virtual const btPoolAllocator* getInternalManifoldPool() const = 0; 102 101 103 virtual void* allocateCollisionAlgorithm(int size) = 0; 102 104 … … 106 108 107 109 108 #endif // _DISPATCHER_H110 #endif //BT_DISPATCHER_H -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h
r8351 r8393 14 14 */ 15 15 16 #ifndef OVERLAPPING_PAIR_CACHE_H17 #define OVERLAPPING_PAIR_CACHE_H16 #ifndef BT_OVERLAPPING_PAIR_CACHE_H 17 #define BT_OVERLAPPING_PAIR_CACHE_H 18 18 19 19 … … 465 465 466 466 467 #endif // OVERLAPPING_PAIR_CACHE_H468 469 467 #endif //BT_OVERLAPPING_PAIR_CACHE_H 468 469 -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h
r8351 r8393 14 14 */ 15 15 16 #ifndef QUANTIZED_BVH_H17 #define QUANTIZED_BVH_H16 #ifndef BT_QUANTIZED_BVH_H 17 #define BT_QUANTIZED_BVH_H 18 18 19 19 class btSerializer; … … 577 577 578 578 579 #endif // QUANTIZED_BVH_H579 #endif //BT_QUANTIZED_BVH_H -
code/trunk/src/external/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h
r8351 r8393 14 14 */ 15 15 16 #ifndef SIMPLE_BROADPHASE_H17 #define SIMPLE_BROADPHASE_H16 #ifndef BT_SIMPLE_BROADPHASE_H 17 #define BT_SIMPLE_BROADPHASE_H 18 18 19 19 … … 168 168 169 169 170 #endif // SIMPLE_BROADPHASE_H170 #endif //BT_SIMPLE_BROADPHASE_H 171 171
Note: See TracChangeset
for help on using the changeset viewer.