diff --git a/Installation/changes.html b/Installation/changes.html
index fac69170e93..899bfd84885 100644
--- a/Installation/changes.html
+++ b/Installation/changes.html
@@ -1,4 +1,4 @@
-
+
@@ -298,6 +298,18 @@ and src/ directories).
is provided in addition to the current class-based API in order to
make it easier to use.
+
Scale-Space Surface Reconstruction
+
+ - Breaking change: the API was rewritten to separate the
+ smoothing and meshing algorithm and making it possible for the user
+ to use different ones. The default algorithms used are the same as
+ before this API change, but methods are moved to the
+ classes
Weighted_PCA_smoother
+ and Alpha_shape_mesher.
+ - Alternative smoothing and meshing methods are
+ provided:
Jet_smoother
+ and Advancing_front_mesher.
+
3D Surface Subdivision Methods
diff --git a/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h b/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h
index e2947a54117..12d5eff474b 100644
--- a/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h
+++ b/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h
@@ -145,7 +145,6 @@ private:
// Map TDS facets to shells
Map_facet_to_shell _map_f2s;
- // std::map _map_f2s;
unsigned int _index;
std::vector _bubbles;
@@ -232,11 +231,9 @@ public:
for (Facet_iterator it = _surface.begin(); it != _surface.end(); ++ it)
{
- // Facet t = *it;
cpp11::array f = {{ std::size_t((*it)[0]), std::size_t((*it)[1]), std::size_t((*it)[2]) }};
*(output ++) = f;
}
-// std::copy (_surface.begin(), _surface.end(), output);
}
/// \endcond