fix: want to add if NOT qnan

This commit is contained in:
tszirr
2014-04-21 23:20:34 +02:00
parent 8699021f17
commit 51cb2c042c

View File

@@ -217,10 +217,8 @@ bool GenVertexNormalsProcess::GenMeshVertexNormals (aiMesh* pMesh, unsigned int
// HACK: if v.x is qnan the dot product will become qnan, too
// therefore the comparison against fLimit should be false
// in every case.
if (v * pMesh->mNormals[i] < fLimit)
continue;
pcNor += v;
if (v * pMesh->mNormals[i] >= fLimit)
pcNor += v;
}
pcNew[i] = pcNor.Normalize();
}