mirror of https://github.com/CGAL/cgal
Fix: the manifold criterion was activated when the checkbox was *not* checked!
This commit is contained in:
parent
8542eb2fe9
commit
dbbca6cfe8
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue