Skip to content

Commit

Permalink
(moveit_ros) add missing CYLINDER check (#2640)
Browse files Browse the repository at this point in the history
As this check was missing, the CYLINDER check later on was unreachable
  • Loading branch information
MatthijsBurgh authored Jan 3, 2024
1 parent 2d62be9 commit 74ba730
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ SemanticWorld::generatePlacePoses(const object_recognition_msgs::msg::Table& cho
{
std::vector<geometry_msgs::msg::PoseStamped> place_poses;
if (object_shape->type != shapes::MESH && object_shape->type != shapes::SPHERE && object_shape->type != shapes::BOX &&
object_shape->type != shapes::CONE)
object_shape->type != shapes::CYLINDER && object_shape->type != shapes::CONE)
{
return place_poses;
}
Expand Down

0 comments on commit 74ba730

Please sign in to comment.