Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2008, 5:40:38 PM (17 years ago)
Author:
rgrieder
Message:

Downgraded Bullet to latest tagged version: 2.72
That should give us more stability.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics/src/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h

    r1963 r1972  
    1818
    1919#include "LinearMath/btScalar.h" //for SIMD_FORCE_INLINE
    20 #include "LinearMath/btVector3.h"
    2120#include "LinearMath/btAlignedAllocator.h"
    2221
     
    9291        };
    9392
    94         btVector3       m_aabbMin;
    95         btVector3       m_aabbMax;
    96 
    9793        //Usually the client btCollisionObject or Rigidbody class
    9894        void*   m_clientObject;
     
    116112        }
    117113
    118         btBroadphaseProxy(const btVector3& aabbMin,const btVector3& aabbMax,void* userPtr,short int collisionFilterGroup, short int collisionFilterMask,void* multiSapParentProxy=0)
    119                 :m_aabbMin(aabbMin),
    120                 m_aabbMax(aabbMax),
    121                 m_clientObject(userPtr),
     114        btBroadphaseProxy(void* userPtr,short int collisionFilterGroup, short int collisionFilterMask,void* multiSapParentProxy=0)
     115                :m_clientObject(userPtr),
    122116                m_collisionFilterGroup(collisionFilterGroup),
    123117                m_collisionFilterMask(collisionFilterMask)
Note: See TracChangeset for help on using the changeset viewer.