rapid
A ROS robotics library.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
rapid_collision

Simple APIs for collision checking in ROS

Oriented bounding box check:

geometry_msgs::Pose pose1 = ...;
geometry_msgs::Vector3 scale1 = ...;
geometry_msgs::Pose pose2 = ...;
geometry_msgs::Vector3 scale2 = ...;
bool is_collision = rapid::AreObbsInCollision(pose1, scale1, pose2, scale2));