diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2019-10-14 16:33:45 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2019-10-14 16:46:54 -0400 |
commit | 86922ff70ba533b376a6680f965f542894e8c614 (patch) | |
tree | b99bc39067ce17ec257ad44199becdc61b69d3c2 /core/math/plane.h | |
parent | 1fed266bf5452b30376db62495f4985f6975f2c1 (diff) |
Make is_equal_approx separate for structures
This commit adds exposed behavior for C#
Diffstat (limited to 'core/math/plane.h')
-rw-r--r-- | core/math/plane.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/plane.h b/core/math/plane.h index ec817edd2c..10802de383 100644 --- a/core/math/plane.h +++ b/core/math/plane.h @@ -69,6 +69,7 @@ public: Plane operator-() const { return Plane(-normal, -d); } bool is_almost_like(const Plane &p_plane) const; + bool is_equal_approx(const Plane &p_plane) const; _FORCE_INLINE_ bool operator==(const Plane &p_plane) const; _FORCE_INLINE_ bool operator!=(const Plane &p_plane) const; |