* temporarily remove doxygen customization, we'll see if that fix api.kde.org

but I no hope, that would be too simple !
* added Rotation2D typedefs
* remove CoreDeclarations header file
This commit is contained in:
Gael Guennebaud
2008-08-28 15:28:23 +00:00
parent 70266b4d05
commit 3ced3f91c2
5 changed files with 60 additions and 61 deletions

View File

@@ -175,6 +175,13 @@ public:
{ return m_angle * (1-t) + t * other; }
};
/** \ingroup GeometryModule
* single precision 2D rotation type */
typedef Rotation2D<float> Rotation2Df;
/** \ingroup GeometryModule
* double precision 2D rotation type */
typedef Rotation2D<double> Rotation2Dd;
/** Set \c *this from a 2x2 rotation matrix \a mat.
* In other words, this function extract the rotation angle
* from the rotation matrix.