remove default values. Values are given by every call to this constructor

This commit is contained in:
Jane Tournois 2016-03-14 12:19:01 +01:00
parent cfe32713d7
commit badfb8f2b8
1 changed files with 3 additions and 5 deletions

View File

@ -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()