diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2020-03-13 11:03:21 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2020-03-17 19:23:56 +0100 |
commit | d1c74afc40ef3e4c050c05b47aeefd48d23f42f4 (patch) | |
tree | b4ca38c34660a814efcb615bc0ca3abd5d304c30 | |
parent | eb2971fd4cf23c34a9f95048a7b40471b7b52e09 (diff) |
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.
-rw-r--r-- | src/lib/eina/eina_vector.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/eina/eina_vector.h b/src/lib/eina/eina_vector.h index 13617c22e0..998879b099 100644 --- a/src/lib/eina/eina_vector.h +++ b/src/lib/eina/eina_vector.h | |||
@@ -32,16 +32,16 @@ | |||
32 | * @{ | 32 | * @{ |
33 | */ | 33 | */ |
34 | 34 | ||
35 | typedef struct _Eina_Vector2 Eina_Vector2; | ||
36 | typedef struct _Eina_Vector3 Eina_Vector3; | ||
37 | |||
38 | #define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)}) | ||
39 | /** | 35 | /** |
40 | * @defgroup Eina_Vector2 Floating point vectors in 2D | 36 | * @defgroup Eina_Vector2 Floating point vectors in 2D |
41 | * @brief 2D vector definition and operations | 37 | * @brief 2D vector definition and operations |
42 | * @{ | 38 | * @{ |
43 | */ | 39 | */ |
44 | 40 | ||
41 | typedef struct _Eina_Vector2 Eina_Vector2; | ||
42 | typedef struct _Eina_Vector3 Eina_Vector3; | ||
43 | |||
44 | #define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)}) | ||
45 | struct _Eina_Vector2 | 45 | struct _Eina_Vector2 |
46 | { | 46 | { |
47 | double x; | 47 | double x; |