2015-10-26 11:46:05 +01:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
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"
|
|
|
|
|
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
|
|
|
|
2018-08-28 11:44:15 +02:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
|
2009-01-26 13:53:43 +00:00
|
|
|
/** \defgroup Geometry_Module Geometry module
|
|
|
|
*
|
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
|
2015-12-30 16:04:24 +01:00
|
|
|
* - \link Quaternion quaternions \endlink
|
|
|
|
* - cross products (\ref MatrixBase::cross, \ref MatrixBase::cross3)
|
|
|
|
* - orthognal vector generation (\ref MatrixBase::unitOrthogonal)
|
|
|
|
* - some linear components: \link ParametrizedLine parametrized-lines \endlink and \link Hyperplane hyperplanes
|
|
|
|
* \endlink
|
|
|
|
* - \link AlignedBox axis aligned bounding boxes \endlink
|
|
|
|
* - \link umeyama least-square transformation fitting \endlink
|
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
|
|
|
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: begin_exports
|
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"
|
2014-07-01 16:58:11 +02:00
|
|
|
#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"
|
2017-01-16 11:05:56 +00:00
|
|
|
#include "src/Geometry/Hyperplane.h"
|
2014-07-01 16:58:11 +02:00
|
|
|
#include "src/Geometry/ParametrizedLine.h"
|
|
|
|
#include "src/Geometry/AlignedBox.h"
|
|
|
|
#include "src/Geometry/Umeyama.h"
|
|
|
|
|
2019-02-23 10:45:40 +01:00
|
|
|
// Use the SSE optimized version whenever possible.
|
2021-01-13 22:54:03 +00:00
|
|
|
#if (defined EIGEN_VECTORIZE_SSE) || (defined EIGEN_VECTORIZE_NEON)
|
|
|
|
#include "src/Geometry/arch/Geometry_SIMD.h"
|
2009-03-07 13:52:44 +00:00
|
|
|
#endif
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: end_exports
|
2009-03-07 13:52:44 +00:00
|
|
|
|
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
|