From 1074954faef6b104f64aaf514e367af18e29f4d7 Mon Sep 17 00:00:00 2001 From: jordan4ibanez Date: Fri, 16 May 2025 08:16:52 -0400 Subject: [PATCH] Already working within core namespace --- irr/include/plane3d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irr/include/plane3d.h b/irr/include/plane3d.h index 4003325b5..506b5ecbb 100644 --- a/irr/include/plane3d.h +++ b/irr/include/plane3d.h @@ -165,7 +165,7 @@ public: bool existsIntersection(const plane3d &other) const { vector3d cross = other.Normal.crossProduct(Normal); - return cross.getLength() > core::ROUNDING_ERROR_f32; + return cross.getLength() > ROUNDING_ERROR_f32; } //! Intersects this plane with another.