Fix: the manifold criterion was activated when the checkbox was *not* checked!

This commit is contained in:
Laurent Rineau 2016-01-06 17:30:53 +01:00
parent 8542eb2fe9
commit dbbca6cfe8
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ typedef Mesh_criteria::Cell_criteria Cell_criteria;
typedef Tr::Point Point_3;
CGAL::Mesh_facet_topology topology(int manifold) {
return manifold == 1 ? CGAL::FACET_VERTICES_ON_SAME_SURFACE_PATCH :
return manifold == 0 ? CGAL::FACET_VERTICES_ON_SAME_SURFACE_PATCH :
static_cast<CGAL::Mesh_facet_topology>
(CGAL::MANIFOLD |
CGAL::FACET_VERTICES_ON_SAME_SURFACE_PATCH);