@@ -537,7 +537,7 @@ THREE.PLYExporter.prototype = {
} );
- result = `${ header }${vertexList}\n${ includeIndices ? `${faceList}\n` : '' }`;
+ result = `${ header }${vertexList}${ includeIndices ? `${faceList}\n` : '\n' }`;
}
@@ -543,7 +543,7 @@ PLYExporter.prototype = {