Revert "Make nan==nan true for GDScript"

This commit is contained in:
Juan Linietsky
2017-02-14 17:05:16 -03:00
committed by GitHub
parent 78336990f4
commit 04a6d2789e
9 changed files with 26 additions and 99 deletions

View File

@@ -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;
}