bullet3/examples/pybullet
Erwin Coumans e98fca1e5e implement pybullet.getContactPointData(), two optional object unique ids as filter
returns a pylist of contact points. Each point has the following data:

	0     int m_contactFlags;//unused for now
         1     int m_bodyUniqueIdA;
         2     int m_bodyUniqueIdB;
         3     int m_linkIndexA;
         4     int m_linkIndexB;
         5-6-7     double m_positionOnAInWS[3];//contact point location on object A, in world space coordinates
         8-9-10     double m_positionOnBInWS[3];//contact point location on object A, in world space coordinates
         11-12-13     double m_contactNormalOnBInWS[3];//the separating contact normal, pointing from object B towards object A
         14     double m_contactDistance;//negative number is penetration, positive is distance.

         15    double m_normalForce;
2016-09-01 18:28:39 -07:00
..
CMakeLists.txt Update CMakeLists to be the same as upstream. 2016-08-22 10:26:56 -07:00
premake4.lua Add sleep to avoid 100% busy CPU loop in PhysicsServerExample 2016-08-13 12:21:18 -07:00
pybullet.c implement pybullet.getContactPointData(), two optional object unique ids as filter 2016-09-01 18:28:39 -07:00
test.py add pybullet.getBasePositionAndOrientation 2016-05-24 15:29:26 -07:00
testrender.py add pybullet render API with yaw/pitch/roll option 2016-08-08 14:23:44 -07:00