doxygen docs: Create Eina Vector2 group in the right place

A couple members were outside the group and appeared in the
Eina Data Types page instead.
This commit is contained in:
Xavi Artigas 2020-03-13 11:03:21 +01:00
parent eb2971fd4c
commit d1c74afc40
1 changed files with 4 additions and 4 deletions

View File

@ -32,16 +32,16 @@
* @{
*/
typedef struct _Eina_Vector2 Eina_Vector2;
typedef struct _Eina_Vector3 Eina_Vector3;
#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)})
/**
* @defgroup Eina_Vector2 Floating point vectors in 2D
* @brief 2D vector definition and operations
* @{
*/
typedef struct _Eina_Vector2 Eina_Vector2;
typedef struct _Eina_Vector3 Eina_Vector3;
#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)})
struct _Eina_Vector2
{
double x;