From bcf3f985fb06ca1fff76e3df4c7c1ac0fdf6cb43 Mon Sep 17 00:00:00 2001 From: Andreas Henne Date: Thu, 13 Aug 2015 13:22:21 +0200 Subject: [PATCH] Fixed spelling error. --- code/PlyExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/PlyExporter.cpp b/code/PlyExporter.cpp index f8ff34fc2..0a23e4b75 100644 --- a/code/PlyExporter.cpp +++ b/code/PlyExporter.cpp @@ -192,7 +192,7 @@ PlyExporter::PlyExporter(const char* _filename, const aiScene* pScene, bool bina // uchar seems to be the most common type for the number of indices per polygon and int seems to be most common for the vertex indices. // For instance, MeshLab fails to load meshes in which both types are uint. Houdini seems to have problems as well. - // Obviously, using unchar will not work for meshes with polygons with more than 255 indices, but how realistic is this case? + // Obviously, using uchar will not work for meshes with polygons with more than 255 indices, but how realistic is this case? mOutput << "property list uchar int vertex_index" << endl; mOutput << "end_header" << endl;