aboutsummaryrefslogtreecommitdiff
path: root/core/math/math_funcs.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-05-01 11:37:46 +0200
committerRémi Verschelde2016-05-01 12:28:01 +0200
commit26c2e0d09dc9c61d6d49b6d43f47a484e7eff49f (patch)
tree4ce4b394e839cbc01279102eec619d06a503ff93 /core/math/math_funcs.cpp
parent0b49d78a3f9d175b0a2cc9088bf5c2f748a70cee (diff)
downloadgodot-26c2e0d09dc9c61d6d49b6d43f47a484e7eff49f.tar.gz
godot-26c2e0d09dc9c61d6d49b6d43f47a484e7eff49f.tar.zst
godot-26c2e0d09dc9c61d6d49b6d43f47a484e7eff49f.zip
Diffstat (limited to 'core/math/math_funcs.cpp')
-rw-r--r--core/math/math_funcs.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/math/math_funcs.cpp b/core/math/math_funcs.cpp
index 07f114725..0fbd03121 100644
--- a/core/math/math_funcs.cpp
+++ b/core/math/math_funcs.cpp
@@ -135,18 +135,20 @@ double Math::rad2deg(double p_y) {
double Math::round(double p_val) {
- if (p_val>0) {
+ if (p_val>=0) {
return ::floor(p_val+0.5);
} else {
p_val=-p_val;
return -::floor(p_val+0.5);
}
}
+
double Math::asin(double p_x) {
return ::asin(p_x);
}
+
double Math::acos(double p_x) {
return ::acos(p_x);