diff options
author | Hristo Iliev <capitane71@gmail.com> | 2024-08-30 16:11:18 +0300 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-17 08:57:41 +0200 |
commit | 6ab9ec33f218f5d2e5dd8e3b504d0a7ddd574855 (patch) | |
tree | 0ca76ce412bf3679b834a7c57b7c73064ebb47e6 /core | |
parent | 4acc73dbfafe7e6cc2b806bf2e9024a213d16498 (diff) | |
download | redot-engine-6ab9ec33f218f5d2e5dd8e3b504d0a7ddd574855.tar.gz |
Add modf function and fix snap behavior
Fixes #96159
(cherry picked from commit fcc8518bce17a72041de43efdeb64c9064bd0256)
Diffstat (limited to 'core')
-rw-r--r-- | core/math/math_funcs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h index 3060f31970..7cb4465639 100644 --- a/core/math/math_funcs.h +++ b/core/math/math_funcs.h @@ -105,6 +105,9 @@ public: static _ALWAYS_INLINE_ double fmod(double p_x, double p_y) { return ::fmod(p_x, p_y); } static _ALWAYS_INLINE_ float fmod(float p_x, float p_y) { return ::fmodf(p_x, p_y); } + static _ALWAYS_INLINE_ double modf(double p_x, double *r_y) { return ::modf(p_x, r_y); } + static _ALWAYS_INLINE_ float modf(float p_x, float *r_y) { return ::modff(p_x, r_y); } + static _ALWAYS_INLINE_ double floor(double p_x) { return ::floor(p_x); } static _ALWAYS_INLINE_ float floor(float p_x) { return ::floorf(p_x); } |