fix boundary case for TriMeshSplit1_4

This commit is contained in:
Martin Schultz
2017-05-30 14:35:54 +02:00
parent 47fcf4edc4
commit 4826d46ca3

View File

@@ -368,9 +368,9 @@ public:
VertexHandle v1 = this->add_vertex(new1);
VertexHandle v2 = this->add_vertex(new2);
const bool split0 = !this->is_boundary(he0);
const bool split1 = !this->is_boundary(he1);
const bool split2 = !this->is_boundary(he2);
const bool split0 = !this->is_boundary(eh0);
const bool split1 = !this->is_boundary(eh1);
const bool split2 = !this->is_boundary(eh2);
// delete original face
this->delete_face(_fh);