aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Geometry
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-28 17:44:27 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-28 17:44:27 +0000
commit9b4d46c82ebd6cd71f1ca559f73ea5864c6ef835 (patch)
tree0bfae5c146ba31a2c845cc502006bf3531b188ce /Eigen/Geometry
parentee2df6026abe8ab6e4615b8cee84aaeeea83efdc (diff)
* Add an HyperPlane class in the Geometry module
with its respective unit-test. Feel free to discuss the API on the ML. * Some bugfix in unitOrthogonal found by the hyperplane unit test.
Diffstat (limited to 'Eigen/Geometry')
-rw-r--r--Eigen/Geometry9
1 files changed, 5 insertions, 4 deletions
diff --git a/Eigen/Geometry b/Eigen/Geometry
index 61b7d7038..065d4ee5a 100644
--- a/Eigen/Geometry
+++ b/Eigen/Geometry
@@ -22,15 +22,16 @@ namespace Eigen {
* \endcode
*/
+// the Geometry module use cwiseCos and cwiseSin which are defined in the Array module
+#include "src/Array/CwiseOperators.h"
+#include "src/Array/Functors.h"
+
#include "src/Geometry/OrthoMethods.h"
#include "src/Geometry/Quaternion.h"
#include "src/Geometry/AngleAxis.h"
#include "src/Geometry/Rotation.h"
#include "src/Geometry/Transform.h"
-
-// the Geometry module use cwiseCos and cwiseSin which are defined in the Array module
-#include "src/Array/CwiseOperators.h"
-#include "src/Array/Functors.h"
+#include "src/Geometry/HyperPlane.h"
} // namespace Eigen