1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00
This commit is contained in:
jordan4ibanez 2025-06-15 15:35:52 +02:00 committed by GitHub
commit 1f123ee85b
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.