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
|
, 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()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue