diff --git a/src/Physics/Plane.cpp b/src/Physics/Plane.cpp index ba72c7c37..f8529bbf1 100644 --- a/src/Physics/Plane.cpp +++ b/src/Physics/Plane.cpp @@ -45,7 +45,6 @@ bool Plane::operator%(const Line& other) const { bool Plane::operator%(const LineSegment& other) const { float t = Intersection::planeLine(transformedPosition(), transformedNormal(), other.transformedA(), other.transformedB()); - Corrade::Utility::Debug() << transformedPosition() << transformedNormal() << other.transformedA() << other.transformedB() << t; return t > 0.0f && t < 1.0f; }