mirror of https://github.com/CGAL/cgal
Minor doc fixes
This commit is contained in:
parent
8703f5c122
commit
cc4f17c9e7
|
|
@ -8,10 +8,9 @@ Euclidean plane \f$ \E^2\f$.
|
||||||
|
|
||||||
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
||||||
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
||||||
model `Cartesian<T>`, the two types are the same. For the
|
model `Cartesian<NT>`, the two types are the same. For the
|
||||||
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
|
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
|
||||||
to `T`, and `Kernel::FT` is equal to
|
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
|
||||||
`Quotient<T>`.
|
|
||||||
|
|
||||||
\cgalHeading{Operators}
|
\cgalHeading{Operators}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,10 @@ An object of the class `Point_3` is a point in the three-dimensional
|
||||||
Euclidean space \f$ \E^3\f$.
|
Euclidean space \f$ \E^3\f$.
|
||||||
|
|
||||||
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
||||||
RingNumberType and a FieldNumberType, respectively. For the kernel
|
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
||||||
model `Cartesian<T>`, the two types are the same. For the
|
model `Cartesian<NT>`, the two types are the same. For the
|
||||||
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
|
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
|
||||||
to `T`, and `Kernel::FT` is equal to
|
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
|
||||||
`Quotient<T>`.
|
|
||||||
|
|
||||||
\cgalHeading{Operators}
|
\cgalHeading{Operators}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,9 @@ An object of the class `Weighted_point_2` is a tuple of a two-dimensional point
|
||||||
|
|
||||||
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
||||||
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
||||||
model `Cartesian<T>`, the two types are the same. For the
|
model `Cartesian<NT>`, the two types are the same. For the
|
||||||
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
|
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
|
||||||
to `T`, and `Kernel::FT` is equal to
|
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
|
||||||
`Quotient<T>`.
|
|
||||||
|
|
||||||
\sa `Point_2<Kernel>`
|
\sa `Point_2<Kernel>`
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,9 @@ An object of the class `Weighted_point_3` is a tuple of a three-dimensional poin
|
||||||
|
|
||||||
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
Remember that `Kernel::RT` and `Kernel::FT` denote a
|
||||||
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
|
||||||
model `Cartesian<T>`, the two types are the same. For the
|
model `Cartesian<NT>`, the two types are the same. For the
|
||||||
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
|
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
|
||||||
to `T`, and `Kernel::FT` is equal to
|
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
|
||||||
`Quotient<T>`.
|
|
||||||
|
|
||||||
\sa `Point_3<Kernel>`
|
\sa `Point_3<Kernel>`
|
||||||
|
|
||||||
|
|
@ -92,7 +91,7 @@ public:
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Test for equality. Two points are equal, iff their \f$ x\f$ and \f$ y\f$
|
Test for equality. Two points are equal, iff their \f$ x\f$, \f$ y\f$, and \f$ z\f$
|
||||||
coordinates are equal. The point can be compared with `ORIGIN`.
|
coordinates are equal. The point can be compared with `ORIGIN`.
|
||||||
*/
|
*/
|
||||||
bool operator==(const Weighted_point_3<Kernel> &q) const;
|
bool operator==(const Weighted_point_3<Kernel> &q) const;
|
||||||
|
|
@ -173,13 +172,13 @@ public:
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
returns the i'th %Cartesian coordinate of `p`, starting with 0.
|
returns the i'th %Cartesian coordinate of `p`, starting with 0.
|
||||||
\pre \f$ 0\leq i \leq1\f$.
|
\pre \f$ 0\leq i \leq2\f$.
|
||||||
*/
|
*/
|
||||||
Kernel::FT cartesian(int i) const;
|
Kernel::FT cartesian(int i) const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
returns `cartesian(i)`.
|
returns `cartesian(i)`.
|
||||||
\pre \f$ 0\leq i \leq1\f$.
|
\pre \f$ 0\leq i \leq2\f$.
|
||||||
*/
|
*/
|
||||||
Kernel::FT operator[](int i) const;
|
Kernel::FT operator[](int i) const;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue