aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/Hyperplane.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-12-17 17:14:37 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-12-17 17:14:37 +0000
commit5f582aa4e87ff9f6a45ffee065623bb920e02ee4 (patch)
tree7eadf49f3a2b5352d3bcf75c642d3283121e8a42 /Eigen/src/Geometry/Hyperplane.h
parentc22d10f94c1382a7a41aa219fc9678ca6bb10fcf (diff)
fix bad typos, thanks to Kenneth Riddile
Diffstat (limited to 'Eigen/src/Geometry/Hyperplane.h')
-rw-r--r--Eigen/src/Geometry/Hyperplane.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Geometry/Hyperplane.h b/Eigen/src/Geometry/Hyperplane.h
index 5171f9ae4..98611d146 100644
--- a/Eigen/src/Geometry/Hyperplane.h
+++ b/Eigen/src/Geometry/Hyperplane.h
@@ -70,7 +70,7 @@ public:
/** Construct a plane from its normal \a n and a point \a e onto the plane.
* \warning the vector normal is assumed to be normalized.
*/
- inline Hyperplane(const VectorType& n, const VectorType e)
+ inline Hyperplane(const VectorType& n, const VectorType& e)
: m_coeffs(n.size()+1)
{
normal() = n;