From 62a50da35160b67649b973ca9882f1ad5a64576e Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Fri, 25 Jan 2019 08:15:16 +0100 Subject: [PATCH] Update CHANGES.md --- Installation/CHANGES.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/Installation/CHANGES.md b/Installation/CHANGES.md index 839fe0848cc..a0e278a01a8 100644 --- a/Installation/CHANGES.md +++ b/Installation/CHANGES.md @@ -79,6 +79,33 @@ Release date: March 2019 reduced-convolution method. In particular, correctly handled the case where one of the summands does not have an outer boundaey. +### 3D Point Set + +- Added a method `copy_properties()` that allows to copy the + properties from a point set to another one (without copying the + content); + +- Added a method `insert(const Point_set&, const Index&)` to copy a + point along with all its associated properties from another point + set; + +- `remove()` methods now only invalidate the `end()` iterator + instead of invalidating all iterators; + +- Added a method `is_removed()` that takes an index as argument; + +- Added a method `cancel_removals()` to restore removed points (if + no point was inserted since then an garbage was not collected); + +- **Breaking change:** unified API of method `add_normal_map()` with + `add_property_map()`: it now returns a pair of property map + bool + (that tells if the property was added) instead of just the + property map; + +- Added a method `properties_and_types()` in addition to + `properties()`: this new one returns pairs of `std::string` + + `std::type_info` in order to also know the type of each property. + ### CGAL and the Boost Graph Library (BGL) - Add function `write_wrl()` for writing into VRML 2.0 format.