2008-06-03 06:58:36 +08: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-16 01:22:41 +08:00
|
|
|
#include "src/Geometry/Rotation.h"
|
2008-06-15 16:33:44 +08:00
|
|
|
#include "src/Geometry/Transform.h"
|
2008-06-03 06:58:36 +08:00
|
|
|
|
2008-06-03 21:43:29 +08: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-03 06:58:36 +08:00
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
#endif // EIGEN_GEOMETRY_MODULE_H
|