2008-06-03 06:58:36 +08:00
|
|
|
#ifndef EIGEN_GEOMETRY_MODULE_H
|
|
|
|
#define EIGEN_GEOMETRY_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2008-08-19 19:06:40 +08:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
|
|
|
|
2008-06-03 06:58:36 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
2008-08-27 07:07:33 +08:00
|
|
|
/** \defgroup GeometryModule Geometry module
|
2008-07-20 23:18:54 +08:00
|
|
|
* This module provides support for:
|
|
|
|
* - fixed-size homogeneous transformations
|
|
|
|
* - 2D and 3D rotations
|
2008-08-12 10:14:02 +08:00
|
|
|
* - quaternions
|
2008-07-20 23:18:54 +08:00
|
|
|
* - \ref MatrixBase::cross() "cross product"
|
2008-08-27 03:12:23 +08:00
|
|
|
* - \ref MatrixBase::unitOrthogonal() "orthognal vector generation"
|
|
|
|
*
|
2008-07-20 23:18:54 +08:00
|
|
|
* \code
|
|
|
|
* #include <Eigen/Geometry>
|
|
|
|
* \endcode
|
|
|
|
*/
|
2008-07-20 04:36:41 +08:00
|
|
|
|
2008-08-29 01:44:27 +08:00
|
|
|
// the Geometry module use cwiseCos and cwiseSin which are defined in the Array module
|
|
|
|
#include "src/Array/CwiseOperators.h"
|
|
|
|
#include "src/Array/Functors.h"
|
|
|
|
|
2008-07-27 22:24:32 +08:00
|
|
|
#include "src/Geometry/OrthoMethods.h"
|
2008-06-03 06:58:36 +08:00
|
|
|
#include "src/Geometry/Quaternion.h"
|
2008-06-21 23:01:49 +08:00
|
|
|
#include "src/Geometry/AngleAxis.h"
|
2008-06-16 01:22:41 +08:00
|
|
|
#include "src/Geometry/Rotation.h"
|
2008-06-15 16:33:44 +08:00
|
|
|
#include "src/Geometry/Transform.h"
|
2008-08-29 21:30:37 +08:00
|
|
|
#include "src/Geometry/Hyperplane.h"
|
2008-06-03 21:43:29 +08:00
|
|
|
|
2008-06-03 06:58:36 +08:00
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
#endif // EIGEN_GEOMETRY_MODULE_H
|