aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-24 17:31:03 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-24 17:31:03 +0000
commit251ecc0ab9ee7bf923c5212ab93bdf02dc8156d7 (patch)
tree393e91b4fe6baedb755ca02f0fcd8e9b272a6673 /Eigen/src/Core
parentaeca7a63f4338fac89ed374b0acfde21e3af5fc6 (diff)
Rename someOrthogonal to unitOrthogonal. Fix a bug in it, with dyn-size vectors of size <=3.
Update doc and test to reflect that it always returns a unit vector.
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/MatrixBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index c563466b4..dbb481914 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -567,7 +567,7 @@ template<typename Derived> class MatrixBase
template<typename OtherDerived>
EvalType cross(const MatrixBase<OtherDerived>& other) const;
- EvalType someOrthogonal(void) const;
+ EvalType unitOrthogonal(void) const;
#ifdef EIGEN_MATRIXBASE_PLUGIN
#include EIGEN_MATRIXBASE_PLUGIN