5 #ifndef HPP_FCL_SERIALIZATION_AABB_H 6 #define HPP_FCL_SERIALIZATION_AABB_H 12 namespace serialization {
14 template <
class Archive>
16 const unsigned int ) {
17 ar& make_nvp(
"min_", aabb.
min_);
18 ar& make_nvp(
"max_", aabb.
max_);
24 #endif // ifndef HPP_FCL_SERIALIZATION_AABB_H Vec3f min_
The min point in the AABB.
void serialize(Archive &ar, hpp::fcl::AABB &aabb, const unsigned int)
A class describing the AABB collision structure, which is a box in 3D space determined by two diagona...
Vec3f max_
The max point in the AABB.