Inverted true/false

This commit is contained in:
vlj 2014-09-06 15:07:28 +02:00
parent 4f60c1b753
commit 163a3ae7cd

View File

@ -135,8 +135,8 @@ bool isBoxInFrontOfPlane(const core::plane3df &plane, const core::vector3df edge
{
for (u32 j = 0; j<8; ++j)
if (plane.classifyPointRelation(edges[j]) != core::ISREL3D_FRONT)
return true;
return false;
return false;
return true;
}
static