summaryrefslogtreecommitdiffstats
path: root/core/math/plane.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/math/plane.cpp')
-rw-r--r--core/math/plane.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/math/plane.cpp b/core/math/plane.cpp
index 0d446059c4..2a97932049 100644
--- a/core/math/plane.cpp
+++ b/core/math/plane.cpp
@@ -164,8 +164,3 @@ Plane::operator String() const {
return normal.operator String() + ", " + rtos(d);
}
-
-bool Plane::nan_equals(const Plane& p_plane) const {
-
- return normal.nan_equals(p_plane.normal) && d == p_plane.d;
-}