fix blocking plot.show() never terminating properly

This commit is contained in:
Erwin Coumans 2017-10-13 14:51:06 -07:00
parent cb23e6c102
commit 8750d49082
2 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,6 @@
import pybullet as bullet
plot = True
import time
if (plot):
import matplotlib.pyplot as plt
@ -142,6 +143,9 @@ if plot:
ax_tor.set_ylim(-20., 20.)
ax_tor.legend()
plt.show()
plt.pause(0.01)
while (1):
bullet.stepSimulation()
time.sleep(0.01)

View File

@ -441,7 +441,7 @@ print("-----")
setup(
name = 'pybullet',
version='1.5.7',
version='1.5.8',
description='Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
long_description='pybullet is an easy to use Python module for physics simulation, robotics and deep reinforcement learning based on the Bullet Physics SDK. With pybullet you can load articulated bodies from URDF, SDF and other file formats. pybullet provides forward dynamics simulation, inverse dynamics computation, forward and inverse kinematics and collision detection and ray intersection queries. Aside from physics simulation, pybullet supports to rendering, with a CPU renderer and OpenGL visualization and support for virtual reality headsets.',
url='https://github.com/bulletphysics/bullet3',