don't forget to map boundary halfedges

This commit is contained in:
Jane Tournois 2016-03-24 16:25:00 +01:00
parent 681e08ddda
commit 2bc034dee1
1 changed files with 4 additions and 0 deletions

View File

@ -70,6 +70,10 @@ namespace CGAL {
}
do {
h2h.insert(std::make_pair(shd, thd));
if (face(opposite(shd, sm), sm) == boost::graph_traits<SourceMesh>::null_face())
h2h.insert(std::make_pair(opposite(shd, sm), opposite(thd, tm)));
shd = next(shd,sm);
thd = next(thd,tm);
}while(shd != done);