* 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

@@ -247,13 +247,13 @@ struct ei_functor_traits<ei_scalar_real_op<Scalar> >
*
* \sa class CwiseUnaryOp, MatrixBase::operator*, MatrixBase::operator/
*/
/* NOTE why doing the ei_pset1() *is* an optimization ?
/* NOTE why doing the ei_pset1() in packetOp *is* an optimization ?
* indeed it seems better to declare m_other as a PacketScalar and do the ei_pset1() once
* in the constructor. However, in practice:
* - GCC does not like m_other as a PacketScalar and generate a load every time it needs it
* - one the other hand GCC is able to moves the ei_pset1() away the loop :)
* - simpler code ;)
* (ICC performs well in both cases)
* (ICC and gcc 4.4 seems to perform well in both cases, the issue is visible with y = a*x + b*y)
*/
template<typename Scalar>
struct ei_scalar_multiple_op {

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.