mirror of https://github.com/CGAL/cgal
Document that Triangulation only works with Epick_d.
(cherry picked from commit b71335b4fe)
This commit is contained in:
parent
81eda79252
commit
adff1e473d
|
|
@ -5,15 +5,13 @@
|
||||||
|
|
||||||
This concept describes the geometric types and predicates required to build
|
This concept describes the geometric types and predicates required to build
|
||||||
a Delaunay triangulation. It corresponds to the first template parameter of the class
|
a Delaunay triangulation. It corresponds to the first template parameter of the class
|
||||||
`Delaunay_triangulation<DelaunayTriangulationTraits, TriangulationDataStructure>`.
|
`CGAL::Delaunay_triangulation<DelaunayTriangulationTraits, TriangulationDataStructure>`.
|
||||||
|
|
||||||
\cgalRefines ::TriangulationTraits.
|
\cgalRefines ::TriangulationTraits.
|
||||||
|
|
||||||
\cgalHasModel `CGAL::Cartesian_d<FT, Dim, LA>`
|
\cgalHasModel `CGAL::Epick_d<Dim>`
|
||||||
\cgalHasModel `CGAL::Epick_d<Dim>` (recommended)
|
|
||||||
|
|
||||||
\sa `TriangulationTraits`
|
\sa `TriangulationTraits`
|
||||||
\sa `DelaunayTriangulation`
|
|
||||||
*/
|
*/
|
||||||
class DelaunayTriangulationTraits {
|
class DelaunayTriangulationTraits {
|
||||||
public:
|
public:
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
This concept describes the geometric types and predicates required to build
|
This concept describes the geometric types and predicates required to build
|
||||||
a triangulation. It corresponds to the first template parameter of the class
|
a triangulation. It corresponds to the first template parameter of the class
|
||||||
`Triangulation<TriangulationTraits, TriangulationDataStructure>`.
|
`CGAL::Triangulation<TriangulationTraits, TriangulationDataStructure>`.
|
||||||
|
|
||||||
\cgalRefines `SpatialSortingTraits_d`
|
\cgalRefines `SpatialSortingTraits_d`
|
||||||
|
|
||||||
|
|
@ -14,8 +14,7 @@ traits must refine `SpatialSortingTraits_d`. The insertion is
|
||||||
then optimized using spatial sorting.
|
then optimized using spatial sorting.
|
||||||
This is not required if the points are inserted one by one.
|
This is not required if the points are inserted one by one.
|
||||||
|
|
||||||
\cgalHasModel `CGAL::Cartesian_d<FT, Dim, LA>`
|
\cgalHasModel `CGAL::Epick_d<Dim>`
|
||||||
\cgalHasModel `CGAL::Epick_d<Dim>` (recommended)
|
|
||||||
|
|
||||||
\sa `DelaunayTriangulationTraits`
|
\sa `DelaunayTriangulationTraits`
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue