aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Geometry
blob: 1d8fb33cab3a0616707a729df8a1fcf22a5b7cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef EIGEN_GEOMETRY_MODULE_H
#define EIGEN_GEOMETRY_MODULE_H

#include "Core"

namespace Eigen {

/** \defgroup Geometry Geometry module
  * This module provides support for:
  *  - fixed-size homogeneous transformations
  *  - 2D and 3D rotations
  *  - \ref MatrixBase::cross() "cross product"
  * 
  * \code
  * #include <Eigen/Geometry>
  * \endcode
  */

#include "src/Geometry/Cross.h"
#include "src/Geometry/Quaternion.h"
#include "src/Geometry/AngleAxis.h"
#include "src/Geometry/Rotation.h"
#include "src/Geometry/Transform.h"

// the Geometry module use cwiseCos and cwiseSin which are defined in the Array module
#include "src/Array/CwiseOperators.h"
#include "src/Array/Functors.h"

} // namespace Eigen

#endif // EIGEN_GEOMETRY_MODULE_H