summaryrefslogtreecommitdiff
path: root/src/lib/eina
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2020-03-09 13:01:11 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2020-03-09 13:03:54 +0100
commitdc58262158b315e9f4bfe76b7555150e06c3e180 (patch)
treefc02206262f7edb764b857b6905ffe39b54f4d46 /src/lib/eina
parent7096376119c0ca2231099e8b7395d4b8e170c96e (diff)
downloadefl-dc58262158b315e9f4bfe76b7555150e06c3e180.tar.gz
doxygen docs: remove @ender_group and organize eina vectors
Mysterious @ender_group is an invalid doxygen command and I could not find it defined anywhere. I could not infer its purpose either so... removed. Put the Eina Vector 2D and 3D groups in their proper place so they appear with the rest of the Eina basic types.
Diffstat (limited to 'src/lib/eina')
-rw-r--r--src/lib/eina/eina_matrix.h3
-rw-r--r--src/lib/eina/eina_quad.h1
-rw-r--r--src/lib/eina/eina_vector.h46
3 files changed, 24 insertions, 26 deletions
diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h
index 201054974b..533609dcb0 100644
--- a/src/lib/eina/eina_matrix.h
+++ b/src/lib/eina/eina_matrix.h
@@ -22,9 +22,6 @@
/**
* @file
- * @ender_group{Eina_Matrix_Type}
- * @ender_group{Eina_Matrix3_F16p16}
- * @ender_group{Eina_Matrix3}
*/
/**
diff --git a/src/lib/eina/eina_quad.h b/src/lib/eina/eina_quad.h
index c4cdc9fc90..c9257ee164 100644
--- a/src/lib/eina/eina_quad.h
+++ b/src/lib/eina/eina_quad.h
@@ -22,7 +22,6 @@
/**
* @file
- * @ender_group{Eina_Quad}
*/
/**
diff --git a/src/lib/eina/eina_vector.h b/src/lib/eina/eina_vector.h
index e9ee12d732..13617c22e0 100644
--- a/src/lib/eina/eina_vector.h
+++ b/src/lib/eina/eina_vector.h
@@ -24,42 +24,28 @@
/**
* @file
- * @ender_group{Eina_Vector_Type}
- * @ender_group{Eina_Vector2}
- * @ender_group{Eina_Vector3}
*/
-typedef struct _Eina_Vector2 Eina_Vector2;
-typedef struct _Eina_Vector3 Eina_Vector3;
-
-#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)})
/**
- * @}
- * @defgroup Eina_Vector2 Vectors in floating point
- * @ingroup Eina_Basic
- * @brief Vector definition and operations
+ * @addtogroup Eina_Data_Types_Group Data Types
+ *
* @{
*/
-struct _Eina_Vector2
-{
- double x;
- double y;
-};
+typedef struct _Eina_Vector2 Eina_Vector2;
+typedef struct _Eina_Vector3 Eina_Vector3;
+#define EINA_VECTOR2(x, y) ((Eina_Vector2) {(x), (y)})
/**
- * @}
- * @defgroup Eina_Vector3 Vectors in floating point
- * @ingroup Eina_Basic
- * @brief Vector definition and operations
+ * @defgroup Eina_Vector2 Floating point vectors in 2D
+ * @brief 2D vector definition and operations
* @{
*/
-struct _Eina_Vector3
+struct _Eina_Vector2
{
double x;
double y;
- double z;
};
/**
@@ -234,6 +220,20 @@ static inline void eina_vector2_homogeneous_position_transform(Eina_Vector2 *out
*/
static inline void eina_vector2_homogeneous_direction_transform(Eina_Vector2 *out, const Eina_Matrix3 *m, const Eina_Vector2 *v);
+/** @} */
+
+/**
+ * @defgroup Eina_Vector3 Floating point vectors in 3D
+ * @brief 3D vector definition and operations
+ * @{
+ */
+struct _Eina_Vector3
+{
+ double x;
+ double y;
+ double z;
+};
+
/**
* @brief Set parameters to vector.
*
@@ -536,6 +536,8 @@ static inline Eina_Bool eina_vector3_triangle_equivalent(Eina_Vector3 *v0, Eina_
/** @} */
+/** @} */
+
#include "eina_inline_vector.x"
#endif