1// This file is part of Eigen, a lightweight C++ template library
4// This Source Code Form is subject to the terms of the Mozilla
5// Public License v. 2.0. If a copy of the MPL was not distributed
6// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef EIGEN_GEOMETRY_MODULE_H
9#define EIGEN_GEOMETRY_MODULE_H
17#include "src/Core/util/DisableStupidWarnings.h"
19/** \defgroup Geometry_Module Geometry module
21 * This module provides support for:
22 * - fixed-size homogeneous transformations
23 * - translation, scaling, 2D and 3D rotations
24 * - \link Quaternion quaternions \endlink
25 * - cross products (\ref MatrixBase::cross(), \ref MatrixBase::cross3())
26 * - orthogonal vector generation (MatrixBase::unitOrthogonal)
27 * - some linear components: \link ParametrizedLine parametrized-lines \endlink and \link Hyperplane hyperplanes \endlink
28 * - \link AlignedBox axis aligned bounding boxes \endlink
29 * - \link umeyama() least-square transformation fitting \endlink
31 * #include <Eigen/Geometry>
35// IWYU pragma: begin_exports
36#include "src/Geometry/OrthoMethods.h"
37#include "src/Geometry/EulerAngles.h"
38#include "src/Geometry/Homogeneous.h"
39#include "src/Geometry/RotationBase.h"
40#include "src/Geometry/Rotation2D.h"
41#include "src/Geometry/Quaternion.h"
42#include "src/Geometry/AngleAxis.h"
43#include "src/Geometry/Transform.h"
44#include "src/Geometry/Translation.h"
45#include "src/Geometry/Scaling.h"
46#include "src/Geometry/Hyperplane.h"
47#include "src/Geometry/ParametrizedLine.h"
48#include "src/Geometry/AlignedBox.h"
49#include "src/Geometry/Umeyama.h"
51// Use the SSE optimized version whenever possible.
52#if (defined EIGEN_VECTORIZE_SSE) || (defined EIGEN_VECTORIZE_NEON)
53#include "src/Geometry/arch/Geometry_SIMD.h"
55// IWYU pragma: end_exports
57#include "src/Core/util/ReenableStupidWarnings.h"
59#endif // EIGEN_GEOMETRY_MODULE_H