From a9c60954edac63c7a0bc9b454e564371eedf2965 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 17 Aug 2009 09:16:04 +0200 Subject: [PATCH] add EIGEN_TRANSFORM_PLUGIN --- Eigen/src/Geometry/Transform.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eigen/src/Geometry/Transform.h b/Eigen/src/Geometry/Transform.h index cc1b3c49a..76f47a66f 100644 --- a/Eigen/src/Geometry/Transform.h +++ b/Eigen/src/Geometry/Transform.h @@ -283,6 +283,10 @@ public: bool isApprox(const Transform& other, typename NumTraits::Real prec = precision()) const { return m_matrix.isApprox(other.m_matrix, prec); } + #ifdef EIGEN_TRANSFORM_PLUGIN + #include EIGEN_TRANSFORM_PLUGIN + #endif + protected: };