fix linking in \hasModel by backquoting

This commit is contained in:
Andreas Fabri 2012-08-27 13:28:13 +00:00
parent 286ea75ee0
commit fd1c486d8d
9 changed files with 16 additions and 16 deletions

View File

@ -5,6 +5,7 @@
\refines ::TriangulationVertexBase_2. \refines ::TriangulationVertexBase_2.
\hasModel `CGAL::Alpha_shape_vertex_base_2`
*/ */
class AlphaShapeVertex_2 { class AlphaShapeVertex_2 {
public: public:

View File

@ -7,8 +7,8 @@ namespace CGAL {
A typedef to a kernel which has the following properties: A typedef to a kernel which has the following properties:
<UL> <UL>
<LI>It uses Cartesian representation. <LI>It uses %Cartesian representation.
<LI>It supports constructions of points from <TT>double</TT> Cartesian <LI>It supports constructions of points from `double` %Cartesian
coordinates. coordinates.
<LI>It provides both exact geometric predicates and exact geometric <LI>It provides both exact geometric predicates and exact geometric
constructions. constructions.

View File

@ -7,8 +7,8 @@ namespace CGAL {
A typedef to a kernel which has the following properties: A typedef to a kernel which has the following properties:
<UL> <UL>
<LI>It uses Cartesian representation. <LI>It uses %Cartesian representation.
<LI>It supports constructions of points from <TT>double</TT> Cartesian <LI>It supports constructions of points from double` %Cartesian
coordinates. coordinates.
<LI>It provides both exact geometric predicates and exact geometric <LI>It provides both exact geometric predicates and exact geometric
constructions. constructions.

View File

@ -7,8 +7,8 @@ namespace CGAL {
A typedef to a kernel which has the following properties: A typedef to a kernel which has the following properties:
<UL> <UL>
<LI>It uses Cartesian representation. <LI>It uses %Cartesian representation.
<LI>It supports constructions of points from <TT>double</TT> Cartesian <LI>It supports constructions of points from `double` %Cartesian
coordinates. coordinates.
<LI>It provides exact geometric predicates, but inexact geometric <LI>It provides exact geometric predicates, but inexact geometric
constructions. constructions.

View File

@ -29,7 +29,6 @@ and predicates defined in `K`.
\models ::TriangulationTraits_2 \models ::TriangulationTraits_2
\models ::DelaunayTriangulationTraits_2 \models ::DelaunayTriangulationTraits_2
\models ::ConstrainedTriangulationTraits_2 \models ::ConstrainedTriangulationTraits_2
\models ::PolygonTraits_2
\models ::ConvexHullTraits_2 \models ::ConvexHullTraits_2
*/ */

View File

@ -15,11 +15,11 @@ The former replace constructors of the kernel classes and constructive
procedures in the kernel. There are also function objects replacing operators, procedures in the kernel. There are also function objects replacing operators,
especially for equality testing. especially for equality testing.
\hasModel CGAL::Cartesian<FieldNumberType> \hasModel `CGAL::Cartesian<FieldNumberType>`
\hasModel CGAL::Homogeneous<RingNumberType> \hasModel `CGAL::Homogeneous<RingNumberType>`
\hasModel CGAL::Simple_cartesian<FieldNumberType> \hasModel `CGAL::Simple_cartesian<FieldNumberType>`
\hasModel CGAL::Simple_homogeneous<RingNumberType> \hasModel `CGAL::Simple_homogeneous<RingNumberType>`
\hasModel CGAL::Filtered_kernel<CK> \hasModel `CGAL::Filtered_kernel<CK>`
\hasModel CGAL::Exact_predicates_exact_constructions_kernel \hasModel CGAL::Exact_predicates_exact_constructions_kernel
\hasModel CGAL::Exact_predicates_exact_constructions_kernel_with_sqrt \hasModel CGAL::Exact_predicates_exact_constructions_kernel_with_sqrt
\hasModel CGAL::Exact_predicates_inexact_constructions_kernel \hasModel CGAL::Exact_predicates_inexact_constructions_kernel

View File

@ -3,7 +3,7 @@ namespace CGAL {
/*! /*!
\ingroup PkgPolygonPartitioning2 \ingroup PkgPolygonPartitioning2
Class that derives a traits class for `partition_is_valid_2` from Class that derives a traits class for `::partition_is_valid_2` from
a given traits class by defining the validity testing function object a given traits class by defining the validity testing function object
in terms of a supplied template parameter. in terms of a supplied template parameter.

View File

@ -13,7 +13,7 @@ by storing handles to points instead of points.
\refines ::CopyConstructible \refines ::CopyConstructible
\refines ::Assignable \refines ::Assignable
\hasModel CGAL::Segment_Delaunay_graph_storage_site_2<Gt> \hasModel `CGAL::Segment_Delaunay_graph_storage_site_2<Gt>`
\sa `SegmentDelaunayGraphTraits_2` \sa `SegmentDelaunayGraphTraits_2`
\sa `CGAL::Segment_Delaunay_graph_site_2<K>` \sa `CGAL::Segment_Delaunay_graph_site_2<K>`

View File

@ -16,9 +16,9 @@ predicates on those primitives.
\refines ::SweepLineTraits_2 \refines ::SweepLineTraits_2
\refines An instance of this concept is used as the traits class for the `CGAL::Sweep_line_2::get_intersection_points()` operation. The requirements listed below are induced by components of the `CGAL::snap_rounding_2` function other than the call to `CGAL::Sweep_line_2::get_intersection_points()`. Naturally, some of them may already be listed in `SweepLineTraits_2`. \refines An instance of this concept is used as the traits class for the `CGAL::Sweep_line_2::get_intersection_points()` operation. The requirements listed below are induced by components of the `CGAL::snap_rounding_2` function other than the call to `CGAL::Sweep_line_2::get_intersection_points()`. Naturally, some of them may already be listed in `SweepLineTraits_2`.
\hasModel CGAL::Snap_rounding_traits \hasModel `CGAL::Snap_rounding_traits<Kernel>`
\sa `CGAL::Snap_rounding_2<Traits>` \sa `CGAL::Snap_rounding_2<Kernel>`
*/ */