mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-29 07:14:12 +08:00

- Euler angles and angle axis conversions, - stable spherical interpolation - documentation - update the respective unit test
18 lines
385 B
Plaintext
18 lines
385 B
Plaintext
#ifndef EIGEN_GEOMETRY_MODULE_H
|
|
#define EIGEN_GEOMETRY_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "src/Geometry/Cross.h"
|
|
#include "src/Geometry/Quaternion.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
|