aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/include
diff options
context:
space:
mode:
authorJohn "Lameguy" Wilbert Villamor <lameguy64@gmail.com>2022-12-12 08:24:23 +0800
committerGitHub <noreply@github.com>2022-12-12 08:24:23 +0800
commit77306e187ef1a7ad5d3508ae9acb38edc5b68255 (patch)
treeeacdb4fc027a11830d42480b318b8c033540001e /libpsn00b/include
parent4139331d233b7a962e747c5564fa68a285f81cc8 (diff)
parent10f08719300d5225923bef9b184ac566bdb31d56 (diff)
downloadpsn00bsdk-77306e187ef1a7ad5d3508ae9acb38edc5b68255.tar.gz
Merge pull request #62 from alextrevisan/master
Updated documentation
Diffstat (limited to 'libpsn00b/include')
-rw-r--r--libpsn00b/include/psxgte.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libpsn00b/include/psxgte.h b/libpsn00b/include/psxgte.h
index 3c1d5a4..539b79f 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.
*
@@ -76,21 +76,21 @@ 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);