Minor doc fixes

This commit is contained in:
Mael Rouxel-Labbé 2017-04-10 18:48:37 +02:00
parent 8703f5c122
commit cc4f17c9e7
4 changed files with 20 additions and 24 deletions

View File

@ -8,10 +8,9 @@ Euclidean plane \f$ \E^2\f$.
Remember that `Kernel::RT` and `Kernel::FT` denote a
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
model `Cartesian<T>`, the two types are the same. For the
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
to `T`, and `Kernel::FT` is equal to
`Quotient<T>`.
model `Cartesian<NT>`, the two types are the same. For the
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
\cgalHeading{Operators}

View File

@ -7,11 +7,10 @@ An object of the class `Point_3` is a point in the three-dimensional
Euclidean space \f$ \E^3\f$.
Remember that `Kernel::RT` and `Kernel::FT` denote a
RingNumberType and a FieldNumberType, respectively. For the kernel
model `Cartesian<T>`, the two types are the same. For the
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
to `T`, and `Kernel::FT` is equal to
`Quotient<T>`.
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
model `Cartesian<NT>`, the two types are the same. For the
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
\cgalHeading{Operators}

View File

@ -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
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
model `Cartesian<T>`, the two types are the same. For the
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
to `T`, and `Kernel::FT` is equal to
`Quotient<T>`.
model `Cartesian<NT>`, the two types are the same. For the
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
\sa `Point_2<Kernel>`

View File

@ -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
`RingNumberType` and a `FieldNumberType`, respectively. For the kernel
model `Cartesian<T>`, the two types are the same. For the
kernel model `Homogeneous<T>`, `Kernel::RT` is equal
to `T`, and `Kernel::FT` is equal to
`Quotient<T>`.
model `Cartesian<NT>`, the two types are the same. For the
kernel model `Homogeneous<NT>`, `Kernel::RT` is equal
to `NT`, and `Kernel::FT` is equal to `Quotient<NT>`.
\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`.
*/
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.
\pre \f$ 0\leq i \leq1\f$.
\pre \f$ 0\leq i \leq2\f$.
*/
Kernel::FT cartesian(int i) const;
/*!
returns `cartesian(i)`.
\pre \f$ 0\leq i \leq1\f$.
\pre \f$ 0\leq i \leq2\f$.
*/
Kernel::FT operator[](int i) const;