From 04a6d2789e65c41b616380fcb89d66c183918eaa Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 14 Feb 2017 17:05:16 -0300 Subject: Revert "Make nan==nan true for GDScript" --- core/math/plane.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'core/math/plane.cpp') 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; -} -- cgit v1.2.3