2008-06-02 22:58:36 +00:00
|
|
|
#ifndef EIGEN_GEOMETRY_MODULE_H
|
|
|
|
|
#define EIGEN_GEOMETRY_MODULE_H
|
|
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
|
|
|
|
|
#include "src/Geometry/Cross.h"
|
|
|
|
|
#include "src/Geometry/Quaternion.h"
|
2008-06-21 15:01:49 +00:00
|
|
|
#include "src/Geometry/AngleAxis.h"
|
|
|
|
|
#include "src/Geometry/EulerAngles.h"
|
2008-06-15 17:22:41 +00:00
|
|
|
#include "src/Geometry/Rotation.h"
|
2008-06-15 08:33:44 +00:00
|
|
|
#include "src/Geometry/Transform.h"
|
2008-06-02 22:58:36 +00:00
|
|
|
|
2008-06-03 13:43:29 +00:00
|
|
|
// the Geometry module use cwiseCos and cwiseSin which are defined in the Array module
|
|
|
|
|
#include "src/Array/CwiseOperators.h"
|
|
|
|
|
#include "src/Array/Functors.h"
|
|
|
|
|
|
2008-06-02 22:58:36 +00:00
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_GEOMETRY_MODULE_H
|