summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2020-03-29 05:05:43 -0400
committerAaron Franke <arnfranke@yahoo.com>2020-09-23 00:28:49 -0400
commit23dabcd2d063468b32233c8f3e0c130ce75f7403 (patch)
treed99d9c0f8dd629e08a0b71bf376826efaca73548 /core/math
parente40ba13e59331efe6917b855a9248e2c77b09177 (diff)
Change Basis is_equal_approx to use instance method
Diffstat (limited to 'core/math')
-rw-r--r--core/math/basis.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/math/basis.h b/core/math/basis.h
index a86937ceb4..34cdfbbe1e 100644
--- a/core/math/basis.h
+++ b/core/math/basis.h
@@ -146,8 +146,6 @@ public:
}
bool is_equal_approx(const Basis &p_basis) const;
- // TODO: Break compatibility in 4.0 by getting rid of this so that it's only an instance method. See also TODO in variant_call.cpp
- bool is_equal_approx(const Basis &a, const Basis &b) const { return a.is_equal_approx(b); }
bool is_equal_approx_ratio(const Basis &a, const Basis &b, real_t p_epsilon = UNIT_EPSILON) const;
bool operator==(const Basis &p_matrix) const;