review Mael

This commit is contained in:
Laurent Rineau 2025-05-19 17:14:57 +02:00
parent 97903e7694
commit 5db49a1b89
6 changed files with 10 additions and 11 deletions

View File

@ -3,8 +3,8 @@
\cgalConcept
The concept `ConformingConstrainedDelaunayTriangulationCellBase_3` refines the concept
`TriangulationCellBase_3` and is the base cell class for
the `CGAL::make_conforming_constrained_Delaunay_triangulation_3()` function template.
`TriangulationCellBase_3` and and describes the requirements for a base cell class of
the `CGAL::Conforming_constrained_Delaunay_triangulation_3` class.
\cgalRefines{TriangulationCellBase_3, BaseWithTimeStamp}
@ -22,7 +22,7 @@ public:
/// The following functions return a reference to an object of type
/// `CGAL::Conforming_constrained_Delaunay_triangulation_cell_data_3`, that contains
/// the per-cell data required by the implementation of the
/// `CGAL::make_conforming_constrained_Delaunay_triangulation_3()` function template.
/// `CGAL::Conforming_constrained_Delaunay_triangulation_3` class.
/// @{
CGAL::Conforming_constrained_Delaunay_triangulation_cell_data_3& ccdt_3_data();
const CGAL::Conforming_constrained_Delaunay_triangulation_cell_data_3& ccdt_3_data() const;

View File

@ -4,7 +4,7 @@
The concept `ConformingConstrainedDelaunayTriangulationTraits_3` specifies the requirements
for the geometric traits class of the triangulation used as the first template
parameter `Triangulation_3` in the function template
parameter `%Triangulation` in the function template
`CGAL::make_conforming_constrained_Delaunay_triangulation_3()`.
\cgalRefines{DelaunayTriangulationTraits_3, ProjectionTraitsGeometricTraits_3}

View File

@ -3,9 +3,8 @@
\cgalConcept
The concept `ConformingConstrainedDelaunayTriangulationVertexBase_3` refines the concept
`TriangulationVertexBase_3` and is the base vertex class for
the triangulation returned by
`CGAL::make_conforming_constrained_Delaunay_triangulation_3()` function template.
`TriangulationVertexBase_3` and describes the requirements for a base vertex class of
the `CGAL::Conforming_constrained_Delaunay_triangulation_3` class.
\cgalRefines{TriangulationVertexBase_3, BaseWithTimeStamp}
@ -24,7 +23,7 @@ public:
/// The following functions return a reference to an object of type
/// `CGAL::Conforming_constrained_Delaunay_triangulation_vertex_data_3`, that contains
/// the per-vertex data required by the implementation of the
/// `CGAL::make_conforming_constrained_Delaunay_triangulation_3()` function template.
/// `CGAL::Conforming_constrained_Delaunay_triangulation_3` class.
/// @{
CGAL::Conforming_constrained_Delaunay_triangulation_vertex_data_3& ccdt_3_data();
const CGAL::Conforming_constrained_Delaunay_triangulation_vertex_data_3& ccdt_3_data() const;

View File

@ -25,7 +25,7 @@ namespace CGAL {
* @ingroup PkgConstrainedTriangulation3Classes
* @brief Cell base class for the 3D conforming constrained Delaunay triangulation.
*
* This class is derived from the `Triangulation_cell_base_3` class and provides additional functionality
* This class is derived from its template parameter `CellBase` and provides additional functionality
* required by `Conforming_constrained_Delaunay_triangulation_3`.
*
* @tparam Traits The geometric traits class, which must be a model of `ConformingConstrainedDelaunayTriangulationTraits_3`.

View File

@ -26,7 +26,7 @@ namespace CGAL {
* @ingroup PkgConstrainedTriangulation3Classes
* @brief Vertex base class for the 3D conforming constrained Delaunay triangulation.
*
* This class is derived from the `Triangulation_vertex_base_3` class and provides additional functionality
* This class is derived from its parameter template `VertexBase` and provides additional functionality
* required by `Conforming_constrained_Delaunay_triangulation_3`.
*
* @tparam Traits The geometric traits class, model of `ConformingConstrainedDelaunayTriangulationTraits_3`.

View File

@ -79,7 +79,7 @@ public:
/*! A function object to construct the scaled version of a `Vector_2` */
typedef unspecified_type Construct_scaled_vector_2;
/*! A function object to construct the `i`-th vertex of a `Triangle_3`` */
/*! A function object to construct the `i`-th vertex of a `Triangle_3` */
typedef unspecified_type Construct_vertex_3;
/*! A function object to construct the source vertex of a `Segment_3` */
typedef unspecified_type Construct_source_3;