Răsfoiți Sursa

Fixed spelling error.

Andreas Henne 10 ani în urmă
părinte
comite
bcf3f985fb
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      code/PlyExporter.cpp

+ 1 - 1
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.
     // 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.
     // 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 << "property list uchar int vertex_index" << endl;
 
 
     mOutput << "end_header" << endl;
     mOutput << "end_header" << endl;