removed debug

This commit is contained in:
ZappoMan 2014-12-06 09:44:30 -08:00
parent 1fec69698e
commit ec907d1d1d

View file

@ -266,7 +266,6 @@ bool findRayTrianlgeIntersection(const glm::vec3& origin, const glm::vec3& direc
a = glm::dot(e1, h); a = glm::dot(e1, h);
if (a > EPSILON && a < EPSILON) { if (a > EPSILON && a < EPSILON) {
qDebug() << "if (a > EPSILON && a < EPSILON)...";
return false; return false;
} }
@ -294,7 +293,6 @@ bool findRayTrianlgeIntersection(const glm::vec3& origin, const glm::vec3& direc
return true; return true;
} else { } else {
// this means that there is a line intersection but not a ray intersection // this means that there is a line intersection but not a ray intersection
qDebug() << "if (t <= EPSILON)...";
return false; return false;
} }
return false; return false;