Browse Source

Small correction

Garrett Johnson 7 years ago
parent
commit
76eb28e6f1

+ 1 - 1
examples/js/exporters/PLYBinaryExporter.js

@@ -95,7 +95,7 @@ THREE.PLYBinaryExporter.prototype = {
 			console.error(
 
 				'PLYBinaryExporter: Failed to generate a valid PLY file with triangle indices because the ' +
-				'number of faces is not divisible by 3.'
+				'number of indices is not divisible by 3.'
 
 			);
 

+ 1 - 1
examples/js/exporters/PLYExporter.js

@@ -241,7 +241,7 @@ THREE.PLYExporter.prototype = {
 			console.error(
 
 				'PLYExporter: Failed to generate a valid PLY file with triangle indices because the ' +
-				'number of faces is not divisible by 3.'
+				'number of indices is not divisible by 3.'
 
 			);