mirror of https://github.com/CGAL/cgal
Remove \link
This commit is contained in:
parent
b653138420
commit
0cb0b3854a
|
|
@ -19,17 +19,17 @@ the dimension of \f$ p\f$.
|
||||||
int dimension(const Kernel_d::Point_d& p);
|
int dimension(const Kernel_d::Point_d& p);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
returns the ith homogeneous coordinate of \f$ p\f$.
|
returns the i-th homogeneous coordinate of \f$ p\f$.
|
||||||
|
|
||||||
\pre `0 <= i <=` \link Kernel_d::Component_accessor_d::dimension `dimension`\endlink(`p`).
|
\pre `0 <= i <= dimension(p)`.
|
||||||
*/
|
*/
|
||||||
Kernel_d::RT homogeneous(const Kernel_d::Point_d& p,
|
Kernel_d::RT homogeneous(const Kernel_d::Point_d& p,
|
||||||
int i);
|
int i);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
returns the ith %Cartesian coordinate of \f$ p\f$.
|
returns the i-th %Cartesian coordinate of \f$ p\f$.
|
||||||
|
|
||||||
\pre `0 <= i <` \link Kernel_d::Component_accessor_d::dimension `dimension`\endlink(`p`).
|
\pre `0 <= i < dimension(p)`.
|
||||||
*/
|
*/
|
||||||
Kernel_d::FT cartesian(const Kernel_d::Point_d& p, int
|
Kernel_d::FT cartesian(const Kernel_d::Point_d& p, int
|
||||||
i);
|
i);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue