diff options
| author | Rémi Verschelde | 2016-05-01 11:37:46 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-05-01 11:37:46 +0200 |
| commit | 6883325f926af425cf1db7606506f5538b7a205a (patch) | |
| tree | 4e1e35159b1b7024948c78fa28710ecd388ca882 /core/math/math_funcs.cpp | |
| parent | 78adbf4790a080fc02778a1a67d06dfcdf28290c (diff) | |
| download | godot-6883325f926af425cf1db7606506f5538b7a205a.tar.gz godot-6883325f926af425cf1db7606506f5538b7a205a.tar.zst godot-6883325f926af425cf1db7606506f5538b7a205a.zip | |
Diffstat (limited to 'core/math/math_funcs.cpp')
| -rw-r--r-- | core/math/math_funcs.cpp | 4 |
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); |
