diff --git a/Installation/changes.html b/Installation/changes.html
index da045a6035d..732185cf340 100644
--- a/Installation/changes.html
+++ b/Installation/changes.html
@@ -140,9 +140,9 @@ and src/ directories).
Kernel have been disabled. The constructors used
- to build a weighted point from a point (and reversely) are still available
- but must be called explicitely.
+ the concept Kernel have been disabled. Constructors offering
+ to build a weighted point from a point (and reversely) are still requested
+ by the concept Kernel but must now be marked with the explicit specifier.
src/ directories).
All models of the concept Kernel already provide these functors.
RegularTriangulationVertexBase_3. This
- concept describes the requirements for vertices meant to be used in regular triangulations.
- Concepts that previously refined TriangulationVertexBase_3
- but modeled a vertex class used in regular triangulations, such as the concept MeshVertexBase_3 in the 3D mesh
- generation package, now refine RegularTriangulationVertexBase_3.
+ Introduced the concepts RegularTriangulationVertexBase_2 and
+ RegularTriangulationVertexBase_3. These concepts describe
+ the requirements on classes meant to represent a vertex of a regular triangulation.
+ Concepts that previously refined TriangulationVertexBase_2 or
+ TriangulationVertexBase_3 but described in fact a vertex class
+ used in a regular triangulation, such as the concept MeshVertexBase_3 in the 3D mesh
+ generation package, now refine the corresponding new regular vertex concept.
Point (note that this is either a Traits::Point_[23]
- for basic and Delaunay triangulations or a Traits::Weighted_point_[23] when considering
- regular triangulations). Consequently:
+ Uniformized the point type across all vertex and cell concepts. The triangulation
+ point type name is now always Point. Note that this does not change
+ the requirements but only the name: Point is stil expected to be equal to
+ Traits::Point_[23] for basic and Delaunay triangulations or to
+ Traits::Weighted_point_[23] for regular triangulations. Consequently:
RegularTriangulationVertexBase_2 now requests
@@ -180,11 +183,13 @@ and src/ directories).
RegularTriangulationCellBase_3 now requests
- a Point type instead of a Weighted_point type.
+ a Point type instead of a Weighted_point type
+ (but still equal to Traits::Weighted_point_3)
DelaunayTriangulationCellBase_3 now requests
- a Point type instead of a Point_3 type.
+ a Point type instead of a Point_3 type
+ (but still equal to Traits::Point_3).