Remove \link

This commit is contained in:
Mael Rouxel-Labbé 2025-09-30 21:05:20 +02:00
parent b653138420
commit 0cb0b3854a
1 changed files with 4 additions and 4 deletions

View File

@ -19,17 +19,17 @@ the dimension of \f$ p\f$.
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,
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
i);