We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c5b9f3 + ff50bdb commit 3eea6c6Copy full SHA for 3eea6c6
moveit_planners/pilz_industrial_motion_planner/src/trajectory_generator_polyline.cpp
@@ -103,7 +103,8 @@ void TrajectoryGeneratorPolyline::extractMotionPlanInfo(const planning_scene::Pl
103
for (const auto& pc : req.path_constraints.position_constraints)
104
{
105
Eigen::Isometry3d waypoint;
106
- tf2::fromMsg(pc.constraint_region.primitive_poses.front(), waypoint);
+ waypoint = getConstraintPose(pc.constraint_region.primitive_poses.front().position,
107
+ pc.constraint_region.primitive_poses.front().orientation, pc.target_point_offset);
108
waypoint = scene->getFrameTransform(frame_id) * waypoint;
109
info.waypoints.push_back(waypoint);
110
}
0 commit comments