Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 27, 2011, 7:43:24 AM (14 years ago)
Author:
rgrieder
Message:

Updated Bullet Physics Engine from v2.74 to v2.77

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib/src/external/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h

    r5781 r7983  
    3636
    3737        btScalar        m_tau;
    38         btScalar        m_damping;
     38        btScalar        m_damping;//global non-contact constraint damping, can be locally overridden by constraints during 'getInfo2'.
    3939        btScalar        m_friction;
    4040        btScalar        m_timeStep;
     
    5353        int                     m_solverMode;
    5454        int     m_restingContactRestitutionThreshold;
     55        int                     m_minimumSolverBatchSize;
    5556
    5657
     
    7879                m_linearSlop = btScalar(0.0);
    7980                m_warmstartingFactor=btScalar(0.85);
    80                 m_solverMode = SOLVER_USE_WARMSTARTING | SOLVER_SIMD ;//SOLVER_RANDMIZE_ORDER
     81                m_solverMode = SOLVER_USE_WARMSTARTING | SOLVER_SIMD;// | SOLVER_RANDMIZE_ORDER;
    8182                m_restingContactRestitutionThreshold = 2;//resting contact lifetime threshold to disable restitution
     83                m_minimumSolverBatchSize = 128; //try to combine islands until the amount of constraints reaches this limit
    8284        }
    8385};
Note: See TracChangeset for help on using the changeset viewer.