Merge pull request #120 from AnalyticalGraphicsInc/loading-fix

Don't add a face that contains only two vertices
This commit is contained in:
likangning93 2017-12-20 16:51:36 -05:00 committed by GitHub
commit 09271d284a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -465,7 +465,9 @@ function loadObj(objPath, options) {
faceUvs.push(result[2]); faceUvs.push(result[2]);
faceNormals.push(result[3]); faceNormals.push(result[3]);
} }
if (faceVertices.length > 2) {
addFace(faceVertices, facePositions, faceUvs, faceNormals); addFace(faceVertices, facePositions, faceUvs, faceNormals);
}
faceVertices.length = 0; faceVertices.length = 0;
facePositions.length = 0; facePositions.length = 0;