fix typos

This commit is contained in:
Sébastien Loriot 2013-05-14 17:19:06 +02:00
parent 3dc05ba66d
commit a77564cb71
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
namespace CGAL {
/// \ingroup PkgSurfaceModeling
/// A class to compute the closest rotation in Frobenius norm to a 3x3 Matrix using `Eigen` library.
/// A class to compute the closest rotation in Frobenius norm to a 3x3 Matrix using the `Eigen` library.
/// The internal computation relies on `Eigen::JacobiSVD<>` solver.
///
/// \cgalModels `DeformationClosestRotationTraits_3`

View File

@ -27,8 +27,8 @@
namespace CGAL {
/// \ingroup PkgSurfaceModeling
/// A class to compute the closest rotation in Frobenius norm to a 3x3 Matrix using `Eigen` library.
/// The internal computation relies on an hybrid system of `Eigen::SelfAdjointEigenSolver<>` and `Eigen::JacobiSVD<>` solvers.
/// A class to compute the closest rotation in Frobenius norm to a 3x3 Matrix using the `Eigen` library.
/// The internal computation relies on a hybrid system of `Eigen::SelfAdjointEigenSolver<>` and `Eigen::JacobiSVD<>` solvers.
///
/// \cgalModels `DeformationClosestRotationTraits_3`
class Deformation_Eigen_polar_closest_rotation_traits_3 :