Files
bullet3/examples
Erwin Coumans ab4299f517 expose the local inertial frame for each link in the shared memory API
struct b3LinkState
{
    double m_worldPosition[3];//this is the inertial frame
    double m_worldOrientation[4];

    double m_localInertialPosition[3];//this is the local frame from inertial to link frame
    double m_localInertialOrientation[4];
};

  const btTransform link_frame_world =
               inertial_frame_world * m_local_inertial_frame->inverse();
2016-04-29 14:46:25 -07:00
..
2016-04-28 23:01:49 -07:00
2015-05-03 11:45:30 -07:00
2016-04-28 23:01:49 -07:00
2016-03-10 21:15:23 -08:00
2016-04-28 23:01:49 -07:00