Merge remote-tracking branch 'cgal/5.4.x-branch'

This commit is contained in:
Sébastien Loriot 2022-08-10 18:38:50 +02:00
commit 601bd64dc8
3 changed files with 5 additions and 3 deletions

View File

@ -38,7 +38,9 @@ Nef_nary_union_3<NefPolyhedron_3>();
/// @{
/*!
returns the union of the polyhedra previously added to the class.
returns the union of the polyhedra previously added to the class. The
union does not get removed so that further Nef polyhedra can be added
later.
*/
NefPolyhedron_3 get_union() const;

View File

@ -56,7 +56,7 @@ class Nef_nary_intersection_3 {
return empty;
while(queue.size() > 1)
intersect();
inserted = 0;
inserted = 1;
return queue.front();
}
};

View File

@ -56,7 +56,7 @@ class Nef_nary_union_3 {
return empty;
while(queue.size() > 1)
unite();
inserted = 0;
inserted = 1;
return queue.front();
}
};