Skip to content

Commit

Permalink
Add FormatPlanningInputTask
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Nov 7, 2024
1 parent e506727 commit e5f06eb
Show file tree
Hide file tree
Showing 7 changed files with 562 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tesseract_motion_planners/core/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ bool formatProgramHelper(CompositeInstruction& composite_instructions,
joint_names = it->second;
}

if (base_instruction.getWaypoint().isStateWaypoint() || base_instruction.getWaypoint().isJointWaypoint())
auto& wp = base_instruction.getWaypoint();
if (wp.isStateWaypoint() || wp.isJointWaypoint() || wp.isCartesianWaypoint())
{
if (formatJointPosition(joint_names, base_instruction.getWaypoint()))
format_required = true;
Expand Down
Loading

0 comments on commit e5f06eb

Please sign in to comment.