From 372a4abf3d2d91e12056f7eee22e0cc180ef3d61 Mon Sep 17 00:00:00 2001 From: Alexandro Trevisan Date: Sat, 12 Nov 2022 04:27:17 -0300 Subject: Updated documentation --- libpsn00b/include/psxgte.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libpsn00b/include') diff --git a/libpsn00b/include/psxgte.h b/libpsn00b/include/psxgte.h index 3c1d5a4..feda6b2 100644 --- a/libpsn00b/include/psxgte.h +++ b/libpsn00b/include/psxgte.h @@ -56,7 +56,7 @@ extern "C" { #endif /** - * @brief Gets sine of angle (fixed-point, high precision version) + * @brief Gets sine of angle (fixed-point) * * @details Returns the sine of angle a. * @@ -66,7 +66,7 @@ extern "C" { int isin(int a); /** - * @brief Gets cosine of angle (fixed-point, high precision version) + * @brief Gets cosine of angle (fixed-point) * * @details Returns the cosine of angle a. * @@ -75,22 +75,22 @@ int isin(int a); */ int icos(int a); -/** - * @brief Gets sine of angle (fixed-point) + /** + * @brief Gets sine of angle (fixed-point, high precision version) * * @details Returns the sine of angle a. * - * @param a Angle in fixed-point format (131072 = 360 degrees) + * @param a Angle in fixed-point format (4194304 = 360 degrees) * @return Sine value in 20.12 fixed-point format (4096 = 1.0). */ int hisin(int a); -/** - * @brief Gets cosine of angle (fixed-point) + /** + * @brief Gets cosine of angle (fixed-point, high precision version) * * @details Returns the cosine of angle a. * - * @param a Angle in fixed-point format (131072 = 360 degrees) + * @param a Angle in fixed-point format (4194304 = 360 degrees) * @return Cosine value in 20.12 fixed-point format (4096 = 1.0). */ int hicos(int a); -- cgit v1.2.3