summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/math.hpp
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-08-24 14:28:44 +0200
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2022-09-11 13:11:52 +0200
commit43cdc2e037320354f67129215ff731b269153c2a (patch)
treee91711bdea1d831f08d6920cb8197cf244b8fe27 /include/godot_cpp/core/math.hpp
parent204e504d68cd8b5d267d3146390ec2f25c5f2e27 (diff)
downloadredot-cpp-43cdc2e037320354f67129215ff731b269153c2a.tar.gz
Update hashfuncs, add some missing math funcs.
Diffstat (limited to 'include/godot_cpp/core/math.hpp')
-rw-r--r--include/godot_cpp/core/math.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/godot_cpp/core/math.hpp b/include/godot_cpp/core/math.hpp
index 84f67b0..e0d93db 100644
--- a/include/godot_cpp/core/math.hpp
+++ b/include/godot_cpp/core/math.hpp
@@ -352,6 +352,22 @@ inline float range_lerp(float p_value, float p_istart, float p_istop, float p_os
return Math::lerp(p_ostart, p_ostop, Math::inverse_lerp(p_istart, p_istop, p_value));
}
+inline bool is_nan(float p_val) {
+ return std::isnan(p_val);
+}
+
+inline bool is_nan(double p_val) {
+ return std::isnan(p_val);
+}
+
+inline bool is_inf(float p_val) {
+ return std::isinf(p_val);
+}
+
+inline bool is_inf(double p_val) {
+ return std::isinf(p_val);
+}
+
inline bool is_equal_approx(real_t a, real_t b) {
// Check for exact equality first, required to handle "infinity" values.
if (a == b) {