mirror of https://github.com/CGAL/cgal
minor edits to account for Andreas' remarks: converted image files to svg, changed 'allows' to 'enables'
This commit is contained in:
parent
96f5f1fbc3
commit
b0c08470f6
|
|
@ -6,7 +6,7 @@ EXAMPLE_PATH = ${CGAL_PACKAGE_DIR}/examples
|
|||
|
||||
PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - 2D Hyperbolic Delaunay Triangulations"
|
||||
|
||||
HTML_EXTRA_FILES = ${CGAL_PACKAGE_DOC_DIR}/fig/ht-empty-disks.png \
|
||||
${CGAL_PACKAGE_DOC_DIR}/fig/poincare-disk.png \
|
||||
HTML_EXTRA_FILES = ${CGAL_PACKAGE_DOC_DIR}/fig/ht-empty-disks.svg \
|
||||
${CGAL_PACKAGE_DOC_DIR}/fig/poincare-disk.svg \
|
||||
${CGAL_PACKAGE_DOC_DIR}/fig/header.png \
|
||||
${CGAL_PACKAGE_DOC_DIR}/fig/hyperbolic-vs-euclidean.png
|
||||
${CGAL_PACKAGE_DOC_DIR}/fig/hyperbolic-vs-euclidean.svg
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ namespace CGAL {
|
|||
<img src="header.png" style="max-width:60%; width=60%;"/>
|
||||
</center>
|
||||
|
||||
This package allows to compute Delaunay triangulations of point sets in the Poincaré
|
||||
This package enables the computation of Delaunay triangulations of point sets in the Poincaré
|
||||
disk model of the hyperbolic plane, as well as their dual objects.
|
||||
|
||||
\section HT2_Poincare_model The Poincaré Disk Model of the Hyperbolic Plane
|
||||
|
|
@ -32,7 +32,7 @@ are not the same as its Euclidean center and radius.
|
|||
|
||||
\cgalFigureAnchor{Hyperbolic_triangulation_2Poincare_disk}
|
||||
<center>
|
||||
<img src="poincare-disk.png" style="max-width:35%; width=35%;"/>
|
||||
<img src="poincare-disk.svg" style="max-width:35%; width=35%;"/>
|
||||
</center>
|
||||
\cgalFigureCaptionBegin{Hyperbolic_triangulation_2Poincare_disk}
|
||||
The Poincaré disk model for the hyperbolic plane. The figure shows
|
||||
|
|
@ -62,7 +62,7 @@ See \cgalFigureRef{Hyperbolic_triangulation_2Euclidean_vs_hyperbolic}.
|
|||
|
||||
\cgalFigureAnchor{Hyperbolic_triangulation_2Euclidean_vs_hyperbolic}
|
||||
<center>
|
||||
<img src="hyperbolic-vs-euclidean.png" style="max-width:35%; width=35%;"/>
|
||||
<img src="hyperbolic-vs-euclidean.svg" style="max-width:35%; width=35%;"/>
|
||||
</center>
|
||||
\cgalFigureCaptionBegin{Hyperbolic_triangulation_2Euclidean_vs_hyperbolic}
|
||||
The Euclidean (green) and hyperbolic (black) Delaunay triangulations
|
||||
|
|
@ -79,7 +79,7 @@ non-hyperbolic faces and non-hyperbolic edges
|
|||
|
||||
\cgalFigureAnchor{Hyperbolic_triangulation_2Empty_disks}
|
||||
<center>
|
||||
<img src="ht-empty-disks.png" style="max-width:35%; width=35%;"/>
|
||||
<img src="ht-empty-disks.svg" style="max-width:35%; width=35%;"/>
|
||||
</center>
|
||||
\cgalFigureCaptionBegin{Hyperbolic_triangulation_2Empty_disks}
|
||||
The shaded face is non-hyperbolic. Its dashed edge is non-hyperbolic,
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
\cgalPkgSummaryBegin
|
||||
\cgalPkgAuthor{Mikhail Bogdanov, Iordan Iordanov, and Monique Teillaud}
|
||||
\cgalPkgDesc{This package allows to build and handle Delaunay triangulations of point sets
|
||||
\cgalPkgDesc{This package enables building and handling Delaunay triangulations of point sets
|
||||
in the Poincaré disk model of the hyperbolic plane. Triangulations are built incrementally and can be modified by insertion
|
||||
and removal of vertices; point location facilities are also offered, as well as primitives to
|
||||
build the dual Voronoi diagrams.}
|
||||
|
|
@ -51,7 +51,7 @@ The Delaunay triangulation of a set of points \f$P\f$ in the hyperbolic plane \f
|
|||
|
||||
## Classes ##
|
||||
|
||||
- `CGAL::Hyperbolic_Delaunay_triangulation_2` is the main class of the 2D Hyperbolic Triangulation package. It allows the constructions of Delaunay triangulations in the hyperbolic plane. It offers all the functionalities provided by `CGAL::Delaunay_triangulation_2`, such as point location, insertion, and removal. Construction of the dual Voronoi diagram is also provided.
|
||||
- `CGAL::Hyperbolic_Delaunay_triangulation_2` is the main class of the 2D Hyperbolic Triangulation package. It enables the constructions of Delaunay triangulations in the hyperbolic plane. It offers all the functionalities provided by `CGAL::Delaunay_triangulation_2`, such as point location, insertion, and removal. Construction of the dual Voronoi diagram is also provided.
|
||||
- `CGAL::Hyperbolic_triangulation_face_base_2`
|
||||
|
||||
Two models for the concept `HyperbolicDelaunayTriangulationTraits_2` are provided:
|
||||
|
|
|
|||
Loading…
Reference in New Issue