Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions mahony/mahony.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,6 @@ extern "C"
Typedefs
------------------------------------------------------------------------------*/

/**
* @brief Three-dimensional floating-point vector.
*/
typedef struct _VECTOR_3F
{
float x;
float y;
float z;
} VECTOR_3F;

/**
* @brief Mahony attitude filter status codes.
*/
Expand Down
9 changes: 9 additions & 0 deletions math_sdr/math_sdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ typedef struct _QUAT
float w, x, y, z;
} QUAT;

/**
* @brief Three-dimensional floating-point vector.
*/
typedef struct _VECTOR_3F
{
float x;
float y;
float z;
} VECTOR_3F;

/*------------------------------------------------------------------------------
Macros
Expand Down
Loading