diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-11 09:25:46 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-11 09:25:46 +0200 |
commit | 58eff50bf12dc330df284d7ff78bcfa59f5a2037 (patch) | |
tree | 42b500cefeff0b4226c9596f209adc086589bdb0 /core/math/rect2.cpp | |
parent | 3306ffefd1d00ac5cec0783b9a34633d2d1a6ab3 (diff) | |
parent | 5da515773d8edec988b7523ea97cdfd54c3fd16c (diff) | |
download | redot-engine-58eff50bf12dc330df284d7ff78bcfa59f5a2037.tar.gz |
Merge pull request #64268 from timothyqiu/is-finite
Add `is_finite` method for checking built-in types
Diffstat (limited to 'core/math/rect2.cpp')
-rw-r--r-- | core/math/rect2.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/math/rect2.cpp b/core/math/rect2.cpp index 9e78ead816..facf4eb3c4 100644 --- a/core/math/rect2.cpp +++ b/core/math/rect2.cpp @@ -38,6 +38,10 @@ bool Rect2::is_equal_approx(const Rect2 &p_rect) const { return position.is_equal_approx(p_rect.position) && size.is_equal_approx(p_rect.size); } +bool Rect2::is_finite() const { + return position.is_finite() && size.is_finite(); +} + bool Rect2::intersects_segment(const Point2 &p_from, const Point2 &p_to, Point2 *r_pos, Point2 *r_normal) const { #ifdef MATH_CHECKS if (unlikely(size.x < 0 || size.y < 0)) { |