Blender Git Loki

Git Commits -> Revision c5d4e8a

Revision c5d4e8a by Daniel Genrich (master)
November 6, 2007, 14:26 (GMT)
updating bullet

Commit Details:

Full Hash: c5d4e8a137437c047fc84cf9267b5b0d5c164188
SVN Revision: 12501
Parent Commit: e057b56
Lines Changed: +7361, -2650

18 Added Paths:

/extern/bullet2/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.cpp (+204, -0) (View)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h (+119, -0) (View)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h (+37, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h (+47, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.cpp (+237, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h (+87, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexInternalShape.cpp (+78, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexInternalShape.h (+99, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionShapes/btUniformScalingShape.cpp (+114, -0) (View)
/extern/bullet2/src/BulletCollision/CollisionShapes/btUniformScalingShape.h (+86, -0) (View)
/extern/bullet2/src/BulletCollision/ibmsdk/Makefile (+95, -0)
/extern/bullet2/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.cpp (+194, -0) (View)
/extern/bullet2/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h (+46, -0) (View)
/extern/bullet2/src/BulletDynamics/Dynamics/Bullet-C-API.cpp (+402, -0) (View)
/extern/bullet2/src/BulletDynamics/ibmsdk/Makefile (+45, -0)
/extern/bullet2/src/ibmsdk/Makefile (+10, -0)
/extern/bullet2/src/LinearMath/btPoolAllocator.h (+94, -0) (View)
/extern/bullet2/src/LinearMath/ibmsdk/Makefile (+30, -0)

155 Modified Paths:

/extern/bullet2/src/btBulletCollisionCommon.h (+3, -1) (Diff)
/extern/bullet2/src/btBulletDynamicsCommon.h (+2, -0) (Diff)
/extern/bullet2/src/Bullet-C-Api.h (+164, -6) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btAxisSweep3.cpp (+7, -629) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h (+787, -45) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h (+12, -6) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h (+38, -10) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h (+4, -4) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btDispatcher.h (+8, -2) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.cpp (+357, -79) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h (+216, -13) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.cpp (+162, -72) (Diff)
/extern/bullet2/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h (+67, -15) (Diff)
/extern/bullet2/src/BulletCollision/CMakeLists.txt (+8, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.cpp (+63, -143) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h (+33, -23) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionObject.cpp (+5, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionObject.h (+12, -9) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.cpp (+34, -26) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.h (+17, -13) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp (+5, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.h (+11, -8) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConcaveCollisionAlgorithm.cpp (+7, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConcaveCollisionAlgorithm.h (+12, -10) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp (+6, -11) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.h (+9, -8) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btEmptyCollisionAlgorithm.h (+4, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btManifoldResult.cpp (+14, -9) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btManifoldResult.h (+27, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSimulationIslandManager.cpp (+41, -39) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSimulationIslandManager.h (+10, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereBoxCollisionAlgorithm.cpp (+15, -4) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereBoxCollisionAlgorithm.h (+9, -6) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.cpp (+10, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h (+7, -4) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereTriangleCollisionAlgorithm.cpp (+8, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btSphereTriangleCollisionAlgorithm.h (+7, -4) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btUnionFind.cpp (+1, -0) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btUnionFind.h (+3, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/SphereTriangleDetector.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btBoxShape.cpp (+4, -7) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btBoxShape.h (+66, -36) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.cpp (+38, -11) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h (+20, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCapsuleShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCapsuleShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCollisionShape.h (+12, -12) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCompoundShape.cpp (+10, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCompoundShape.h (+35, -16) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConcaveShape.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConeShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexHullShape.h (+4, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexShape.cpp (+0, -59) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexShape.h (+17, -67) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h (+7, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCylinderShape.cpp (+7, -7) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btCylinderShape.h (+9, -9) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btEmptyShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btEmptyShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btHeightfieldTerrainShape.cpp (+26, -26) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btHeightfieldTerrainShape.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btMinkowskiSumShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btMinkowskiSumShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btMultiSphereShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btMultiSphereShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btOptimizedBvh.cpp (+365, -29) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btOptimizedBvh.h (+74, -11) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btSphereShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btSphereShape.h (+10, -8) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btStaticPlaneShape.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btStridingMeshInterface.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTetrahedronShape.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleBuffer.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleCallback.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.cpp (+18, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h (+9, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleMesh.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleMeshShape.cpp (+2, -3) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h (+7, -5) (Diff)
/extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleShape.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btContinuousConvexCollision.cpp (+17, -7) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btContinuousConvexCollision.h (+3, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexCast.h (+4, -4) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkConvexCast.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkConvexCast.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpa.cpp (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpa.h (+3, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.cpp (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h (+5, -5) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h (+2, -2) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp (+2, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.cpp (+13, -11) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h (+32, -14) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btRaycastCallback.h (+1, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btSimplexSolverInterface.h (+2, -2) (Diff)
/extern/bullet2/src/BulletDynamics/CMakeLists.txt (+2, -1) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.cpp (+6, -6) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h (+3, -0) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h (+10, -3) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btContactConstraint.cpp (+10, -10) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btContactConstraint.h (+2, -2) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h (+15, -11) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.cpp (+416, -308) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h (+398, -85) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btHingeConstraint.cpp (+216, -45) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h (+59, -10) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h (+2, -2) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.cpp (+3, -2) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h (+13, -1) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp (+311, -203) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h (+21, -4) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSolve2LinearConstraint.h (+2, -2) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSolverBody.h (+15, -10) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h (+10, -4) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btTypedConstraint.cpp (+9, -6) (Diff)
/extern/bullet2/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h (+23, -7) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp (+90, -40) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h (+10, -3) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDynamicsWorld.h (+14, -3) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btRigidBody.cpp (+8, -3) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btRigidBody.h (+43, -15) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.cpp (+13, -7) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h (+10, -6) (Diff)
/extern/bullet2/src/BulletDynamics/Vehicle/btRaycastVehicle.cpp (+16, -11) (Diff)
/extern/bullet2/src/BulletDynamics/Vehicle/btRaycastVehicle.h (+3, -3) (Diff)
/extern/bullet2/src/BulletDynamics/Vehicle/btVehicleRaycaster.h (+1, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Vehicle/btWheelInfo.h (+2, -2) (Diff)
/extern/bullet2/src/LinearMath/btAabbUtil2.h (+1, -3) (Diff)
/extern/bullet2/src/LinearMath/btAlignedAllocator.cpp (+101, -16) (Diff)
/extern/bullet2/src/LinearMath/btAlignedAllocator.h (+16, -2) (Diff)
/extern/bullet2/src/LinearMath/btAlignedObjectArray.h (+22, -3) (Diff)
/extern/bullet2/src/LinearMath/btIDebugDraw.h (+2, -0) (Diff)
/extern/bullet2/src/LinearMath/btMatrix3x3.h (+1, -1) (Diff)
/extern/bullet2/src/LinearMath/btMinMax.h (+6, -6) (Diff)
/extern/bullet2/src/LinearMath/btQuadWord.h (+30, -34) (Diff)
/extern/bullet2/src/LinearMath/btQuaternion.h (+3, -3) (Diff)
/extern/bullet2/src/LinearMath/btScalar.h (+224, -11) (Diff)
/extern/bullet2/src/LinearMath/btStackAlloc.h (+13, -4) (Diff)
/extern/bullet2/src/LinearMath/btTransform.h (+1, -7) (Diff)
/extern/bullet2/src/LinearMath/btTransformUtil.h (+6, -2) (Diff)
/extern/bullet2/src/LinearMath/btVector3.h (+50, -0) (Diff)
/extern/bullet2/src/LinearMath/CMakeLists.txt (+1, -0) (Diff)
/extern/bullet2/src/SConscript (+2, -68) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021