mirror of https://github.com/CGAL/cgal
parameters pmesh and ecmap can't be used here
This commit is contained in:
parent
f0bb4febb5
commit
5f5397a5d3
|
|
@ -259,7 +259,7 @@ namespace internal {
|
|||
, const bool protect_constraints
|
||||
, EdgeIsConstrainedMap ecmap = EdgeIsConstrainedMap()
|
||||
, VertexIsConstrainedMap vcmap = VertexIsConstrainedMap()
|
||||
, FacePatchMap fpmap = FacePatchMap(pmesh, ecmap)
|
||||
, FacePatchMap fpmap = FacePatchMap()
|
||||
, const bool own_tree = true)//built by the remesher
|
||||
: mesh_(pmesh)
|
||||
, vpmap_(vpmap)
|
||||
|
|
@ -273,6 +273,8 @@ namespace internal {
|
|||
, vcmap_(vcmap)
|
||||
{
|
||||
CGAL_assertion(CGAL::is_triangle_mesh(mesh_));
|
||||
|
||||
fpmap = FacePatchMap(mesh_, ecmap_);
|
||||
}
|
||||
|
||||
~Incremental_remesher()
|
||||
|
|
|
|||
Loading…
Reference in New Issue