Merge branch '45-possible-importer-bug' into 'master'

Resolve "Possible importer Bug?"

Closes #45

See merge request !138
This commit is contained in:
Jan Möbius
2017-06-30 15:25:17 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@
<b>IO</b>
<ul>
<li>ImporterT: Return a valid FaceHandle when adding non-manifold faces.</li>
<li>BaseExporter: Added accessor functions for HalfEdgeHandles and faceTexCoords to base exporter and exporter template.</li>
<li>OBJ Writer: Added functionality to store FaceTexCoords to objwriter</li>
<li>OBJ Loader: range check for vertex colors and normals in OBJ loader</li>

View File

@@ -157,7 +157,7 @@ public:
}
// add face
FaceHandle fh = mesh_.add_face(vhandles);
fh = mesh_.add_face(vhandles);
// Mark failed face as non-manifold
if (mesh_.has_face_status())