parameters pmesh and ecmap can't be used here

This commit is contained in:
Jane Tournois 2016-03-14 11:35:09 +01:00
parent f0bb4febb5
commit 5f5397a5d3
1 changed files with 3 additions and 1 deletions

View File

@ -259,7 +259,7 @@ namespace internal {
, const bool protect_constraints , const bool protect_constraints
, EdgeIsConstrainedMap ecmap = EdgeIsConstrainedMap() , EdgeIsConstrainedMap ecmap = EdgeIsConstrainedMap()
, VertexIsConstrainedMap vcmap = VertexIsConstrainedMap() , VertexIsConstrainedMap vcmap = VertexIsConstrainedMap()
, FacePatchMap fpmap = FacePatchMap(pmesh, ecmap) , FacePatchMap fpmap = FacePatchMap()
, const bool own_tree = true)//built by the remesher , const bool own_tree = true)//built by the remesher
: mesh_(pmesh) : mesh_(pmesh)
, vpmap_(vpmap) , vpmap_(vpmap)
@ -273,6 +273,8 @@ namespace internal {
, vcmap_(vcmap) , vcmap_(vcmap)
{ {
CGAL_assertion(CGAL::is_triangle_mesh(mesh_)); CGAL_assertion(CGAL::is_triangle_mesh(mesh_));
fpmap = FacePatchMap(mesh_, ecmap_);
} }
~Incremental_remesher() ~Incremental_remesher()