Update doc and CHANGES.MD

This commit is contained in:
Maxime Gimeno 2020-05-18 12:25:28 +02:00
parent 9af250625b
commit 380e7c579e
2 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,10 @@ Release History
is given an optional template parameter `ConcurrencyTag` (default is given an optional template parameter `ConcurrencyTag` (default
value remains `CGAL::Sequential_tag` for backward compatibility). value remains `CGAL::Sequential_tag` for backward compatibility).
### Surface Mesh
- The function `CGAL::Surface_mesh::clear()` now removes all non-default properties instead of just emptying them.
Release 5.0 Release 5.0
----------- -----------

View File

@ -1129,6 +1129,8 @@ public:
} }
/// removes all vertices, halfedge, edges and faces. Collects garbage and clears all properties. /// removes all vertices, halfedge, edges and faces. Collects garbage and clears all properties.
///
/// After calling this method, the object is the same as a newly constructed object. The additional properties (such as normal vectors) are also removed and must thus be re-added if needed.
void clear(); void clear();