mirror of https://github.com/CGAL/cgal
remove default values. Values are given by every call to this constructor
This commit is contained in:
parent
cfe32713d7
commit
badfb8f2b8
|
|
@ -257,9 +257,9 @@ namespace internal {
|
|||
Incremental_remesher(PolygonMesh& pmesh
|
||||
, VertexPointMap& vpmap
|
||||
, const bool protect_constraints
|
||||
, EdgeIsConstrainedMap ecmap = EdgeIsConstrainedMap()
|
||||
, VertexIsConstrainedMap vcmap = VertexIsConstrainedMap()
|
||||
, FacePatchMap fpmap = FacePatchMap()
|
||||
, EdgeIsConstrainedMap ecmap
|
||||
, VertexIsConstrainedMap vcmap
|
||||
, FacePatchMap fpmap
|
||||
, const bool own_tree = true)//built by the remesher
|
||||
: mesh_(pmesh)
|
||||
, vpmap_(vpmap)
|
||||
|
|
@ -273,8 +273,6 @@ namespace internal {
|
|||
, vcmap_(vcmap)
|
||||
{
|
||||
CGAL_assertion(CGAL::is_triangle_mesh(mesh_));
|
||||
|
||||
fpmap = FacePatchMap(mesh_, ecmap_);
|
||||
}
|
||||
|
||||
~Incremental_remesher()
|
||||
|
|
|
|||
Loading…
Reference in New Issue