Copy do not copy marks anymore.

This commit is contained in:
Guillaume Damiand 2020-04-03 14:45:28 +02:00
parent ddc152860d
commit 6a2052b68e
2 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ namespace CGAL {
if (copy_perforated_darts || !amap.is_perforated(it))
{
new_dart=mdarts.emplace();
init_dart(new_dart, amap.get_marks(it));
init_dart(new_dart); // , amap.get_marks(it));
if (mark_perforated!=NB_MARKS && amap.is_perforated(it))
{ mark(new_dart, mark_perforated); }

View File

@ -232,7 +232,7 @@ namespace CGAL {
if (copy_perforated_darts || !amap.is_perforated(it))
{
new_dart=mdarts.emplace();
init_dart(new_dart, amap.get_marks(it));
init_dart(new_dart); //, amap.get_marks(it));
if (mark_perforated!=NB_MARKS && amap.is_perforated(it))
{ mark(new_dart, mark_perforated); }