aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandro Trevisan <alexbaixista@gmail.com>2022-11-12 04:27:17 -0300
committerAlexandro Trevisan <alexbaixista@gmail.com>2022-11-12 04:27:17 -0300
commit372a4abf3d2d91e12056f7eee22e0cc180ef3d61 (patch)
tree5de2d7ab88819a1e51b4b736b0f0832371d8ebc3
parent4139331d233b7a962e747c5564fa68a285f81cc8 (diff)
downloadpsn00bsdk-372a4abf3d2d91e12056f7eee22e0cc180ef3d61.tar.gz
Updated documentation
-rw-r--r--libpsn00b/include/psxgte.h16
1 files changed, 8 insertions, 8 deletions
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);