mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:03:53 +02:00
removed debug
This commit is contained in:
parent
1fec69698e
commit
ec907d1d1d
1 changed files with 0 additions and 2 deletions
|
@ -266,7 +266,6 @@ bool findRayTrianlgeIntersection(const glm::vec3& origin, const glm::vec3& direc
|
|||
a = glm::dot(e1, h);
|
||||
|
||||
if (a > EPSILON && a < EPSILON) {
|
||||
qDebug() << "if (a > EPSILON && a < EPSILON)...";
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -294,7 +293,6 @@ bool findRayTrianlgeIntersection(const glm::vec3& origin, const glm::vec3& direc
|
|||
return true;
|
||||
} else {
|
||||
// this means that there is a line intersection but not a ray intersection
|
||||
qDebug() << "if (t <= EPSILON)...";
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue