Merge pull request #2552 from erwincoumans/master
bump up pybullet to version 2.6.1
This commit is contained in:
Binary file not shown.
2
setup.py
2
setup.py
@@ -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=
|
||||||
|
|||||||
@@ -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");
|
||||||
|
|||||||
@@ -80,9 +80,7 @@ public:
|
|||||||
m_solverCallback = cb;
|
m_solverCallback = cb;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~btDeformableMultiBodyDynamicsWorld()
|
virtual ~btDeformableMultiBodyDynamicsWorld();
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual btMultiBodyDynamicsWorld* getMultiBodyDynamicsWorld()
|
virtual btMultiBodyDynamicsWorld* getMultiBodyDynamicsWorld()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user