diff --git a/include/hpp/fcl/BV/AABB.h b/include/hpp/fcl/BV/AABB.h index 05859d25b1f359ebe000ecfa9d3ac9768af4e932..e67ae4bfffca51db6e5df5c2aa1ef0e7a57fb815 100644 --- a/include/hpp/fcl/BV/AABB.h +++ b/include/hpp/fcl/BV/AABB.h @@ -39,7 +39,7 @@ #define HPP_FCL_AABB_H #include <stdexcept> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> namespace hpp { diff --git a/include/hpp/fcl/BV/BV_node.h b/include/hpp/fcl/BV/BV_node.h index 08dbbf8bd1ba82f1f0ed1208d7e9bcbc277c1912..e7fc637418af63b040efc47c7ff1427c77dda8ed 100644 --- a/include/hpp/fcl/BV/BV_node.h +++ b/include/hpp/fcl/BV/BV_node.h @@ -39,7 +39,7 @@ #ifndef HPP_FCL_BV_NODE_H #define HPP_FCL_BV_NODE_H -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <hpp/fcl/BV/BV.h> #include <iostream> diff --git a/include/hpp/fcl/BV/OBB.h b/include/hpp/fcl/BV/OBB.h index 3b1cb3f5dc09785c116e233256760c6234a50cbb..c359e3151aaf26d82ec67d97e91a86d0f8f4be4b 100644 --- a/include/hpp/fcl/BV/OBB.h +++ b/include/hpp/fcl/BV/OBB.h @@ -38,7 +38,7 @@ #ifndef HPP_FCL_OBB_H #define HPP_FCL_OBB_H -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> namespace hpp { diff --git a/include/hpp/fcl/BV/RSS.h b/include/hpp/fcl/BV/RSS.h index e158d5cc7fd80cb7a482d4b579959101f9652cb7..5a00e4b6d90dcc6d6a79a4531b477469573f3508 100644 --- a/include/hpp/fcl/BV/RSS.h +++ b/include/hpp/fcl/BV/RSS.h @@ -39,7 +39,7 @@ #define HPP_FCL_RSS_H #include <stdexcept> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <boost/math/constants/constants.hpp> namespace hpp diff --git a/include/hpp/fcl/BV/kDOP.h b/include/hpp/fcl/BV/kDOP.h index 00af0f813c477e9780c23c49be5b0061bd6062ab..61e43d90244dec4fab97de79c62992af18364ee6 100644 --- a/include/hpp/fcl/BV/kDOP.h +++ b/include/hpp/fcl/BV/kDOP.h @@ -39,7 +39,7 @@ #define HPP_FCL_KDOP_H #include <stdexcept> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> namespace hpp { diff --git a/include/hpp/fcl/collision.h b/include/hpp/fcl/collision.h index 700e3234233199340514c8e2a90de0d5396ad8b8..cc68c88bd9371631ba1ca93d210d9a92be494da0 100644 --- a/include/hpp/fcl/collision.h +++ b/include/hpp/fcl/collision.h @@ -39,7 +39,7 @@ #ifndef HPP_FCL_COLLISION_H #define HPP_FCL_COLLISION_H -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <hpp/fcl/collision_object.h> #include <hpp/fcl/collision_data.h> diff --git a/include/hpp/fcl/collision_data.h b/include/hpp/fcl/collision_data.h index ded180506448b294d203d18664626df094d95b79..d6278c2e07acd5e531eb9611e83834b0395922c9 100644 --- a/include/hpp/fcl/collision_data.h +++ b/include/hpp/fcl/collision_data.h @@ -41,7 +41,7 @@ #include <hpp/fcl/collision_object.h> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <vector> #include <set> #include <limits> diff --git a/include/hpp/fcl/data_types.h b/include/hpp/fcl/data_types.h index fb234d919bacb5ba90718929719462f91be494c3..dbaa684ef46b2476b45b79a104ee3493af98a060 100644 --- a/include/hpp/fcl/data_types.h +++ b/include/hpp/fcl/data_types.h @@ -41,6 +41,9 @@ #include <cstddef> #include <boost/cstdint.hpp> +#include <Eigen/Core> +#include <Eigen/Geometry> + namespace hpp { namespace fcl @@ -84,4 +87,31 @@ public: } // namespace hpp +namespace hpp +{ + +#ifdef HPP_FCL_HAVE_OCTOMAP + #define OCTOMAP_VERSION_AT_LEAST(x,y,z) \ + (OCTOMAP_MAJOR_VERSION > x || (OCTOMAP_MAJOR_VERSION >= x && \ + (OCTOMAP_MINOR_VERSION > y || (OCTOMAP_MINOR_VERSION >= y && \ + OCTOMAP_PATCH_VERSION >= z)))) + + #define OCTOMAP_VERSION_AT_MOST(x,y,z) \ + (OCTOMAP_MAJOR_VERSION < x || (OCTOMAP_MAJOR_VERSION <= x && \ + (OCTOMAP_MINOR_VERSION < y || (OCTOMAP_MINOR_VERSION <= y && \ + OCTOMAP_PATCH_VERSION <= z)))) +#endif // HPP_FCL_HAVE_OCTOMAP +} + +namespace hpp +{ +namespace fcl +{ + typedef Eigen::Matrix<FCL_REAL, 3, 1> Vec3f; + typedef Eigen::Matrix<FCL_REAL, 3, 3> Matrix3f; + +} +} // namespace hpp + + #endif diff --git a/include/hpp/fcl/math/transform.h b/include/hpp/fcl/math/transform.h index c51d50576376e574a239612191a8714dc1565fdd..7abdb7e7d6848f536e48f1c4e4c9fa10abe163cb 100644 --- a/include/hpp/fcl/math/transform.h +++ b/include/hpp/fcl/math/transform.h @@ -39,7 +39,7 @@ #ifndef HPP_FCL_TRANSFORM_H #define HPP_FCL_TRANSFORM_H -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <boost/thread/mutex.hpp> namespace hpp diff --git a/include/hpp/fcl/math/types.h b/include/hpp/fcl/math/types.h index a60b25a706c78aaaeef81efc6a4271f8d4bf2f03..ec431e7a92b59d788dc4582b7b84d25e3815696f 100644 --- a/include/hpp/fcl/math/types.h +++ b/include/hpp/fcl/math/types.h @@ -38,35 +38,9 @@ #ifndef HPP_FCL_MATH_TYPES_H #define HPP_FCL_MATH_TYPES_H -#include <hpp/fcl/data_types.h> +# warning "This file is deprecated. Include <hpp/fcl/data_types.h> instead." -#include <Eigen/Core> -#include <Eigen/Geometry> - -namespace hpp -{ - -#ifdef HPP_FCL_HAVE_OCTOMAP - #define OCTOMAP_VERSION_AT_LEAST(x,y,z) \ - (OCTOMAP_MAJOR_VERSION > x || (OCTOMAP_MAJOR_VERSION >= x && \ - (OCTOMAP_MINOR_VERSION > y || (OCTOMAP_MINOR_VERSION >= y && \ - OCTOMAP_PATCH_VERSION >= z)))) - - #define OCTOMAP_VERSION_AT_MOST(x,y,z) \ - (OCTOMAP_MAJOR_VERSION < x || (OCTOMAP_MAJOR_VERSION <= x && \ - (OCTOMAP_MINOR_VERSION < y || (OCTOMAP_MINOR_VERSION <= y && \ - OCTOMAP_PATCH_VERSION <= z)))) -#endif // HPP_FCL_HAVE_OCTOMAP -} - -namespace hpp -{ -namespace fcl -{ - typedef Eigen::Matrix<FCL_REAL, 3, 1> Vec3f; - typedef Eigen::Matrix<FCL_REAL, 3, 3> Matrix3f; - -} -} // namespace hpp +// List of equivalent includes. +# include <hpp/fcl/data_types.h> #endif \ No newline at end of file diff --git a/include/hpp/fcl/mesh_loader/loader.h b/include/hpp/fcl/mesh_loader/loader.h index 4739b753d9d3c4d71011693b2e52633c6fa010cc..43d4c703074860861063b97f9fe1bb708faf10a0 100644 --- a/include/hpp/fcl/mesh_loader/loader.h +++ b/include/hpp/fcl/mesh_loader/loader.h @@ -40,7 +40,7 @@ #include <boost/shared_ptr.hpp> #include <hpp/fcl/fwd.hh> #include <hpp/fcl/config.hh> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <hpp/fcl/collision_object.h> namespace hpp diff --git a/include/hpp/fcl/shape/geometric_shapes.h b/include/hpp/fcl/shape/geometric_shapes.h index 7d00796f5b3b2861c9cb6f07c099cf2de0cb979d..3c37dc637fd1b9370a4c3c519750fa1ff63b4afa 100644 --- a/include/hpp/fcl/shape/geometric_shapes.h +++ b/include/hpp/fcl/shape/geometric_shapes.h @@ -42,7 +42,7 @@ #include <boost/math/constants/constants.hpp> #include <hpp/fcl/collision_object.h> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <string.h> namespace hpp diff --git a/test/math.cpp b/test/math.cpp index 33845b0a73196805496f3e4591e3ad6dc84752b4..fb872745fa3a2641ca5f58d1f63bfa6e0dd45915 100644 --- a/test/math.cpp +++ b/test/math.cpp @@ -39,7 +39,7 @@ #include <boost/test/unit_test.hpp> #include <boost/utility/binary.hpp> -#include <hpp/fcl/math/types.h> +#include <hpp/fcl/data_types.h> #include <hpp/fcl/math/transform.h> #include <hpp/fcl/intersect.h>