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"
|
|
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
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
|
|
|
|
|
*
|
2010-06-29 10:10:47 -04:00
|
|
|
*
|
2009-01-26 13:53:43 +00:00
|
|
|
*
|
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"
|
2008-12-05 15:56:28 +00:00
|
|
|
#include "src/Geometry/EulerAngles.h"
|
2011-01-24 11:21:58 -05:00
|
|
|
|
|
|
|
|
#if EIGEN2_SUPPORT_STAGE > STAGE20_RESOLVE_API_CONFLICTS
|
|
|
|
|
#include "src/Geometry/Homogeneous.h"
|
|
|
|
|
#include "src/Geometry/RotationBase.h"
|
|
|
|
|
#include "src/Geometry/Rotation2D.h"
|
|
|
|
|
#include "src/Geometry/Quaternion.h"
|
|
|
|
|
#include "src/Geometry/AngleAxis.h"
|
|
|
|
|
#include "src/Geometry/Transform.h"
|
|
|
|
|
#include "src/Geometry/Translation.h"
|
|
|
|
|
#include "src/Geometry/Scaling.h"
|
|
|
|
|
#include "src/Geometry/Hyperplane.h"
|
|
|
|
|
#include "src/Geometry/ParametrizedLine.h"
|
|
|
|
|
#include "src/Geometry/AlignedBox.h"
|
|
|
|
|
#include "src/Geometry/Umeyama.h"
|
|
|
|
|
|
|
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
|
|
|
|
#include "src/Geometry/arch/Geometry_SSE.h"
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef EIGEN2_SUPPORT
|
|
|
|
|
#include "src/Eigen2Support/Geometry/All.h"
|
2009-03-07 13:52:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-02 22:58:36 +00:00
|
|
|
} // namespace Eigen
|
|
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
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: */
|
|
|
|
|
|