From af8a96ff4663d88a085295c0486a47667c475a76 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Wed, 19 Sep 2018 08:38:32 +0900 Subject: [PATCH] eina: Refer to sin/cos as sine/cosine instead of sinus/cosinus Summary: Sinus and cosinus are just the Latin words for sine and cosine, but we should use the English versions to avoid any possible confusion. Reviewers: Hermet Reviewed By: Hermet Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7059 --- src/lib/eina/eina_fp.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/eina/eina_fp.h b/src/lib/eina/eina_fp.h index b8ffb84f71..49d6662cdb 100644 --- a/src/lib/eina/eina_fp.h +++ b/src/lib/eina/eina_fp.h @@ -189,18 +189,18 @@ static inline unsigned int eina_f32p32_fracc_get(Eina_F32p32 v); #define eina_fp32p32_llabs(a) ((a < 0) ? -(a) : (a)) /** - * @brief Calculates the cosinus of a floating point number + * @brief Calculates the cosine of a floating point number * - * @param[in] a The angle in radians to calculate the cosinus from. - * @return The cosinus value of the angle @p a + * @param[in] a The angle in radians to calculate the cosine from. + * @return The cosine of the angle @p a */ EAPI Eina_F32p32 eina_f32p32_cos(Eina_F32p32 a); /** - * @brief Calculates the sinus of a floating point number + * @brief Calculates the sine of a floating point number * - * @param[in] a The angle in radians to calculate the sinus from. - * @return The cosinus value of the angle @p a + * @param[in] a The angle in radians to calculate the sine from. + * @return The cosine of the angle @p a */ EAPI Eina_F32p32 eina_f32p32_sin(Eina_F32p32 a);