Merge pull request #2552 from erwincoumans/master

bump up pybullet to version 2.6.1
This commit is contained in:
erwincoumans
2019-12-20 18:46:41 -08:00
committed by GitHub
4 changed files with 7 additions and 4 deletions

Binary file not shown.

View File

@@ -491,7 +491,7 @@ if 'BT_USE_EGL' in EGL_CXX_FLAGS:
setup( setup(
name='pybullet', name='pybullet',
version='2.6.0', version='2.6.1',
description= description=
'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning', 'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
long_description= long_description=

View File

@@ -66,6 +66,11 @@ m_deformableBodySolver(deformableBodySolver), m_solverCallback(0)
m_solverDeformableBodyIslandCallback = new DeformableBodyInplaceSolverIslandCallback(constraintSolver, dispatcher); m_solverDeformableBodyIslandCallback = new DeformableBodyInplaceSolverIslandCallback(constraintSolver, dispatcher);
} }
btDeformableMultiBodyDynamicsWorld::~btDeformableMultiBodyDynamicsWorld()
{
delete m_solverDeformableBodyIslandCallback;
}
void btDeformableMultiBodyDynamicsWorld::internalSingleStepSimulation(btScalar timeStep) void btDeformableMultiBodyDynamicsWorld::internalSingleStepSimulation(btScalar timeStep)
{ {
BT_PROFILE("internalSingleStepSimulation"); BT_PROFILE("internalSingleStepSimulation");

View File

@@ -80,9 +80,7 @@ public:
m_solverCallback = cb; m_solverCallback = cb;
} }
virtual ~btDeformableMultiBodyDynamicsWorld() virtual ~btDeformableMultiBodyDynamicsWorld();
{
}
virtual btMultiBodyDynamicsWorld* getMultiBodyDynamicsWorld() virtual btMultiBodyDynamicsWorld* getMultiBodyDynamicsWorld()
{ {