Skip to content

Commit 8c4a370

Browse files
committed
update variable doc
1 parent 6fc298e commit 8c4a370

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

geometry/geometry_datatypes.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,17 @@ typedef struct euler_
7878
union
7979
{
8080
float roll; /**< or bank \f$\phi\f$ = rotation about X axis */
81-
float bank; /**< or bank \f$\phi\f$ = rotation about X axis */
81+
float bank; /**< or roll \f$\phi\f$ = rotation about X axis */
8282
};
8383
union
8484
{
8585
float pitch; /**< or elevation \f$\theta\f$ = rotation about Y axis */
86-
float
87-
elevation; /**< or elevation \f$\theta\f$ = rotation about Y axis */
86+
float elevation; /**< or pitch \f$\theta\f$ = rotation about Y axis */
8887
};
8988
union
9089
{
9190
float yaw; /**< or heading \f$\psi\f$ = rotation about Z axis */
92-
float heading; /**< or heading \f$\psi\f$ = rotation about Z axis */
91+
float heading; /**< or yaw \f$\psi\f$ = rotation about Z axis */
9392
};
9493
} euler;
9594

0 commit comments

Comments
 (0)