WPI-AIM / ambf

Asynchronous Multi-Body Framework
163 stars 67 forks source link

AMBF Python Client Quaternion Order #228

Open jtzhangLogan opened 8 months ago

jtzhangLogan commented 8 months ago

The function euler_from_quaternion from the transformation library expects quaternion in (w, x, y, z) order on default. However, the quaternion passed to this function is in (x, y, z, w) order. For example, in file ambf_base_object.py, in the get_pose function, the variable explict_quat is in (x, y, z, w) order.