update variable doc

This commit is contained in:
Krishna Vedala 2020-08-17 13:59:48 -04:00
parent 6fc298e699
commit 8c4a37059d
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -78,18 +78,17 @@ typedef struct euler_
union
{
float roll; /**< or bank \f$\phi\f$ = rotation about X axis */
float bank; /**< or bank \f$\phi\f$ = rotation about X axis */
float bank; /**< or roll \f$\phi\f$ = rotation about X axis */
};
union
{
float pitch; /**< or elevation \f$\theta\f$ = rotation about Y axis */
float
elevation; /**< or elevation \f$\theta\f$ = rotation about Y axis */
float elevation; /**< or pitch \f$\theta\f$ = rotation about Y axis */
};
union
{
float yaw; /**< or heading \f$\psi\f$ = rotation about Z axis */
float heading; /**< or heading \f$\psi\f$ = rotation about Z axis */
float heading; /**< or yaw \f$\psi\f$ = rotation about Z axis */
};
} euler;