Expand comment

This commit is contained in:
Sean Lilley 2016-06-23 11:14:38 -04:00
parent 0f7b5edcd7
commit 1a2162ad85
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ function processObj(objFile, info, materials, images, done) {
line = line.trim();
var result;
if ((line.length === 0) || (line.charAt(0) === '#')) {
// Nothing to process
// Don't process empty lines or comments
} else if ((result = vertexPattern.exec(line)) !== null) {
positions.push(
parseFloat(result[1]),