rsbullet 0.3.10

Compiles bullet3 and exposes rust bindings to the C API
Documentation
1
2
3
4
5
6
7
8
9
10
11
import pybullet as p
import time
import pybullet_data

p.connect(p.SHARED_MEMORY)

p.setAdditionalSearchPath(pybullet_data.getDataPath())
timestr = time.strftime("%Y%m%d-%H%M%S")
filename = "saveWorld" + timestr + ".py"
p.saveWorld(filename)
p.disconnect()