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
This commit is contained in:
Bryce Harrington 2018-09-19 08:38:32 +09:00 committed by Hermet Park
parent 124ecdfbde
commit af8a96ff46
1 changed files with 6 additions and 6 deletions

View File

@ -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);