aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-08-17 09:16:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-08-17 09:16:41 +0200
commite125c199bbe3c0b61c8732c7603b66745c4582fe (patch)
tree3512f75920bb7b151984d9157bb5a0d12c6f203d
parent737bed19c1fdb01568706bca19666531dda681a7 (diff)
add EIGEN_TRANSFORM_PLUGIN
-rw-r--r--Eigen/src/Geometry/Transform.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/src/Geometry/Transform.h b/Eigen/src/Geometry/Transform.h
index 642f307ed..9eb8ed535 100644
--- a/Eigen/src/Geometry/Transform.h
+++ b/Eigen/src/Geometry/Transform.h
@@ -460,6 +460,11 @@ public:
inline const Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,1> translationExt() const
{ return m_matrix.template block<int(Mode)==int(Projective)?HDim:Dim,1>(0,Dim); }
+
+ #ifdef EIGEN_TRANSFORM_PLUGIN
+ #include EIGEN_TRANSFORM_PLUGIN
+ #endif
+
};
/** \ingroup Geometry_Module */