Browse Source

Removed forgotten debug output.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
831506d5f1
  1. 1
      src/Physics/Plane.cpp

1
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;
}

Loading…
Cancel
Save