add EIGEN_TRANSFORM_PLUGIN

This commit is contained in:
Gael Guennebaud 2009-08-17 09:16:04 +02:00
parent 78ea8b2dbd
commit a9c60954ed

View File

@ -283,6 +283,10 @@ public:
bool isApprox(const Transform& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const bool isApprox(const Transform& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
{ return m_matrix.isApprox(other.m_matrix, prec); } { return m_matrix.isApprox(other.m_matrix, prec); }
#ifdef EIGEN_TRANSFORM_PLUGIN
#include EIGEN_TRANSFORM_PLUGIN
#endif
protected: protected:
}; };