mirror of
https://github.com/TheAlgorithms/C
synced 2025-04-18 19:32:51 +03:00
update variable doc
This commit is contained in:
parent
6fc298e699
commit
8c4a37059d
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user