summaryrefslogtreecommitdiff
path: root/core/math/plane.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-02-14 17:05:16 -0300
committerGitHub <noreply@github.com>2017-02-14 17:05:16 -0300
commit04a6d2789e65c41b616380fcb89d66c183918eaa (patch)
tree8beec0bfd954a7068566855aa970120283763b06 /core/math/plane.cpp
parent78336990f4f6c36db2000d6097826bbe573eb016 (diff)
Revert "Make nan==nan true for GDScript"
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;
-}