From 831506d5f1ca6d31f4ac4901d0d8d6961256bb29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 27 May 2012 23:57:48 +0200 Subject: [PATCH] Removed forgotten debug output. --- src/Physics/Plane.cpp | 1 - 1 file changed, 1 deletion(-) 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; }