2008-06-02 22:58:36 +00:00
|
|
|
#ifndef EIGEN_GEOMETRY_MODULE_H
|
|
|
|
|
#define EIGEN_GEOMETRY_MODULE_H
|
|
|
|
|
|
2008-12-18 20:48:02 +00:00
|
|
|
#include "Core"
|
|
|
|
|
|
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
|
2009-07-06 11:15:38 +02:00
|
|
|
#include "SVD"
|
2009-08-15 23:37:20 +02:00
|
|
|
#include "LU"
|
2008-10-26 20:43:05 +00:00
|
|
|
#include <limits>
|
2008-06-02 22:58:36 +00:00
|
|
|
|
2008-08-19 11:06:40 +00:00
|
|
|
#ifndef M_PI
|
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-02 22:58:36 +00:00
|
|
|
namespace Eigen {
|
|
|
|
|
|
2009-01-26 13:53:43 +00:00
|
|
|
/** \defgroup Geometry_Module Geometry module
|
|
|
|
|
*
|
|
|
|
|
* \nonstableyet
|
|
|
|
|
*
|
2008-07-20 15:18:54 +00:00
|
|
|
* This module provides support for:
|
|
|
|
|
* - fixed-size homogeneous transformations
|
2008-09-03 22:35:45 +00:00
|
|
|
* - translation, scaling, 2D and 3D rotations
|
2008-08-12 02:14:02 +00:00
|
|
|
* - quaternions
|
2008-07-20 15:18:54 +00:00
|
|
|
* - \ref MatrixBase::cross() "cross product"
|
2008-08-26 19:12:23 +00:00
|
|
|
* - \ref MatrixBase::unitOrthogonal() "orthognal vector generation"
|
2008-09-03 22:35:45 +00:00
|
|
|
* - some linear components: parametrized-lines and hyperplanes
|
2008-08-26 19:12:23 +00:00
|
|
|
*
|
2008-07-20 15:18:54 +00:00
|
|
|
* \code
|
|
|
|
|
* #include <Eigen/Geometry>
|
|
|
|
|
* \endcode
|
|
|
|
|
*/
|
2008-07-19 20:36:41 +00:00
|
|
|
|
2008-07-27 14:24:32 +00:00
|
|
|
#include "src/Geometry/OrthoMethods.h"
|
2009-03-05 10:25:22 +00:00
|
|
|
#include "src/Geometry/Homogeneous.h"
|
2008-08-30 21:36:04 +00:00
|
|
|
#include "src/Geometry/RotationBase.h"
|
|
|
|
|
#include "src/Geometry/Rotation2D.h"
|
2008-06-02 22:58:36 +00:00
|
|
|
#include "src/Geometry/Quaternion.h"
|
2008-06-21 15:01:49 +00:00
|
|
|
#include "src/Geometry/AngleAxis.h"
|
2008-12-05 15:56:28 +00:00
|
|
|
#include "src/Geometry/EulerAngles.h"
|
2008-06-15 08:33:44 +00:00
|
|
|
#include "src/Geometry/Transform.h"
|
2008-08-30 00:08:23 +00:00
|
|
|
#include "src/Geometry/Translation.h"
|
|
|
|
|
#include "src/Geometry/Scaling.h"
|
2008-08-29 13:30:37 +00:00
|
|
|
#include "src/Geometry/Hyperplane.h"
|
2008-09-03 22:35:45 +00:00
|
|
|
#include "src/Geometry/ParametrizedLine.h"
|
2008-10-26 15:04:31 +00:00
|
|
|
#include "src/Geometry/AlignedBox.h"
|
2009-05-26 19:22:25 +02:00
|
|
|
#include "src/Geometry/Umeyama.h"
|
2008-06-03 13:43:29 +00:00
|
|
|
|
2009-03-07 13:52:44 +00:00
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
|
|
|
|
#include "src/Geometry/arch/Geometry_SSE.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-02 22:58:36 +00:00
|
|
|
} // namespace Eigen
|
|
|
|
|
|
2008-12-18 20:48:02 +00:00
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
|
2008-06-02 22:58:36 +00:00
|
|
|
#endif // EIGEN_GEOMETRY_MODULE_H
|
2009-12-01 18:00:29 -05:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|
|
|
|
|
|