Expand comment

This commit is contained in:
Sean Lilley 2016-06-23 11:14:38 -04:00
parent 0f7b5edcd7
commit 1a2162ad85

View File

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