extend rf2o namespace to class

This commit is contained in:
Jeremie Deray
2017-08-16 10:09:20 +02:00
parent 77fb8e3a86
commit fb5334d542
3 changed files with 13 additions and 3 deletions

View File

@@ -34,6 +34,7 @@
#include <unsupported/Eigen/MatrixFunctions>
namespace rf2o {
template <typename T>
inline int sign(T x) { return x<0 ? -1:1; }
@@ -61,7 +62,6 @@ inline Eigen::Matrix<T, 3, 3> matrixYaw(const T yaw)
{
return matrixRollPitchYaw<T>(0, 0, yaw);
}
} // namespace rf2o
class CLaserOdometry2D
{
@@ -175,4 +175,6 @@ protected:
void Reset(const Pose3d& ini_pose/*, CObservation2DRangeScan scan*/);
};
} /* namespace rf2o */
#endif // CLaserOdometry2D_H