aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/AngleAxis.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-31 13:32:29 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-31 13:32:29 +0000
commit7e8aa63bb7083c1f465be0b42460f49559ee6b7a (patch)
treeed1c2db0373330f1d05b9e2f554dedbfc0cd307e /Eigen/src/Geometry/AngleAxis.h
parent5c34d8e20a4263bb387e19da4209137bfe519a54 (diff)
* Add Hyperplane::transform(Matrix/Transform)
* Fix compilations with gcc 3.4, ICC and doxygen * Fix krazy directives (hopefully)
Diffstat (limited to 'Eigen/src/Geometry/AngleAxis.h')
-rw-r--r--Eigen/src/Geometry/AngleAxis.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Eigen/src/Geometry/AngleAxis.h b/Eigen/src/Geometry/AngleAxis.h
index 0b4fd03d0..662ae95fb 100644
--- a/Eigen/src/Geometry/AngleAxis.h
+++ b/Eigen/src/Geometry/AngleAxis.h
@@ -60,9 +60,11 @@ template<typename _Scalar>
class AngleAxis : public RotationBase<AngleAxis<_Scalar>,3>
{
typedef RotationBase<AngleAxis<_Scalar>,3> Base;
- using Base::operator*;
public:
+
+ using Base::operator*;
+
enum { Dim = 3 };
/** the scalar type of the coefficients */
typedef _Scalar Scalar;