mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
ce425d92f1
Added doxygen groups for Matrix typedefs and the Geometry module
32 lines
738 B
Plaintext
32 lines
738 B
Plaintext
#ifndef EIGEN_GEOMETRY_MODULE_H
|
|
#define EIGEN_GEOMETRY_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup Geometry
|
|
* 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
|