Blender Git Commit Log

Git Commits -> Revision 472a021

Revision 472a021 by Sergej Reich (master)
October 25, 2013, 03:43 (GMT)
bullet: Update to version 2.82 (bullet revision 2705)

Remove patch that has been applied upstream.

Fixes several bugs.

Commit Details:

Full Hash: 472a021aca3c0a6278151f7abee4e0970b026e3f
SVN Revision: 60918
Parent Commit: 4514eea
Lines Changed: +11572, -1249

32 Added Paths:

/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCompoundCollisionAlgorithm.cpp (+421, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCompoundCollisionAlgorithm.h (+90, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btHashedSimplePairCache.cpp (+278, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btHashedSimplePairCache.h (+174, -0) (View)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btFixedConstraint.cpp (+129, -0) (View)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btFixedConstraint.h (+49, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBody.cpp (+1009, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBody.h (+466, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyConstraint.cpp (+527, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyConstraint.h (+166, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyConstraintSolver.cpp (+795, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyConstraintSolver.h (+85, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyDynamicsWorld.cpp (+578, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyDynamicsWorld.h (+56, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyJointLimitConstraint.cpp (+133, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyJointLimitConstraint.h (+44, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyJointMotor.cpp (+89, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyJointMotor.h (+47, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyLink.h (+110, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyLinkCollider.h (+92, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyPoint2Point.cpp (+143, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodyPoint2Point.h (+60, -0) (View)
/extern/bullet2/src/BulletDynamics/Featherstone/btMultiBodySolverConstraint.h (+82, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btDantzigLCP.cpp (+2079, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btDantzigLCP.h (+77, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btDantzigSolver.h (+112, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btMLCPSolver.cpp (+626, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btMLCPSolver.h (+81, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btMLCPSolverInterface.h (+33, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btPATHSolver.h (+151, -0) (View)
/extern/bullet2/src/BulletDynamics/MLCPSolvers/btSolveProjectedGaussSeidel.h (+80, -0) (View)
/extern/bullet2/src/LinearMath/btMatrixX.h (+504, -0) (View)

1 Deleted Path:

/extern/bullet2/patches/ghost_character.patch (+0, -28)

68 Modified Paths:

/extern/bullet2/CMakeLists.txt (+32, -0) (Diff)
/extern/bullet2/readme.txt (+0, -3) (Diff)
/extern/bullet2/src/btBulletDynamicsCommon.h (+2, -0) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btDispatcher.h (+1, -4) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h (+6, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h (+0, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionObject.cpp (+2, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionObject.h (+34, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.cpp (+43, -30) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.h (+12, -8) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp (+9, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.h (+13, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvex2dConvex2dAlgorithm.cpp (+0, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConcaveCollisionAlgorithm.cpp (+12, -6) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp (+0, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.cpp (+15, -17) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h (+3, -11) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCompoundShape.cpp (+3, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConeShape.cpp (+4, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConeShape.h (+51, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexShape.cpp (+6, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btHeightfieldTerrainShape.cpp (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleMesh.cpp (+4, -4) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleMesh.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h (+1, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h (+1, -4) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp (+26, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp (+1, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btRaycastCallback.h (+1, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Character/btCharacterControllerInterface.h (+2, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Character/btKinematicCharacterController.cpp (+137, -30) (Diff)
/extern/bullet2/src/BulletDynamics/Character/btKinematicCharacterController.h (+5, -1) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h (+48, -16) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h (+14, -2) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btGearConstraint.h (+97, -1) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h (+34, -10) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h (+26, -7) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h (+33, -4) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h (+17, -5) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp (+190, -106) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h (+19, -12) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h (+36, -10) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSolverBody.h (+13, -0) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h (+1, -0) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btTypedConstraint.cpp (+5, -5) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h (+63, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp (+16, -23) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h (+14, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDynamicsWorld.h (+2, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btRigidBody.h (+4, -0) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.cpp (+2, -2) (Diff)
/extern/bullet2/src/BulletSoftBody/btSoftBody.cpp (+17, -1) (Diff)
/extern/bullet2/src/BulletSoftBody/btSoftBody.h (+2, -0) (Diff)
/extern/bullet2/src/BulletSoftBody/btSoftBodyHelpers.cpp (+3, -3) (Diff)
/extern/bullet2/src/BulletSoftBody/btSparseSDF.h (+15, -2) (Diff)
/extern/bullet2/src/LinearMath/btIDebugDraw.h (+82, -56) (Diff)
/extern/bullet2/src/LinearMath/btMatrix3x3.h (+18, -13) (Diff)
/extern/bullet2/src/LinearMath/btQuaternion.h (+37, -5) (Diff)
/extern/bullet2/src/LinearMath/btScalar.h (+71, -7) (Diff)
/extern/bullet2/src/LinearMath/btSerializer.cpp (+833, -750) (Diff)
/extern/bullet2/src/LinearMath/btSerializer.h (+1, -2) (Diff)
/extern/bullet2/src/LinearMath/btVector3.cpp (+37, -12) (Diff)
/extern/bullet2/src/LinearMath/btVector3.h (+21, -11) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021