1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Already working within core namespace

This commit is contained in:
jordan4ibanez 2025-05-16 08:16:52 -04:00 committed by GitHub
parent d19640d57f
commit 1074954fae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,7 +165,7 @@ public:
bool existsIntersection(const plane3d<T> &other) const
{
vector3d<T> cross = other.Normal.crossProduct(Normal);
return cross.getLength() > core::ROUNDING_ERROR_f32;
return cross.getLength() > ROUNDING_ERROR_f32;
}
//! Intersects this plane with another.