summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruvMaroo <dhruvmaru007@gmail.com>2021-05-30 12:22:45 +0530
committerDhruvMaroo <dhruvmaru007@gmail.com>2021-05-30 12:22:45 +0530
commit8ef2e4f1396723427f3d374e55573a4cee052b4f (patch)
tree0f77046fae1af3b74d4ffb806eda37700b5a9cad
parent5128858b1e9b4c0e5275e11fbef7bac1fd445130 (diff)
downloadredot-cpp-8ef2e4f1396723427f3d374e55573a4cee052b4f.tar.gz
Revert "added inverse trigonometric functions in Math.hpp"
This reverts commit 5128858b1e9b4c0e5275e11fbef7bac1fd445130.
-rw-r--r--include/core/Math.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/core/Math.hpp b/include/core/Math.hpp
index 2d82308..4cabe0d 100644
--- a/include/core/Math.hpp
+++ b/include/core/Math.hpp
@@ -52,27 +52,6 @@ inline float tan(float p_x) {
return ::tanf(p_x);
}
-inline double asin(double p_x) {
- return ::asin(p_x);
-}
-inline float asin(float p_x) {
- return ::asinf(p_x);
-}
-
-inline double acos(double p_x) {
- return ::acos(p_x);
-}
-inline float acos(float p_x) {
- return ::acosf(p_x);
-}
-
-inline double atan(double p_x) {
- return ::atan(p_x);
-}
-inline float atan(float p_x) {
- return ::atanf(p_x);
-}
-
inline double atan2(double p_y, double p_x) {
return ::atan2(p_y, p_x);
}