Skip to content

Commit

Permalink
Fix deprecated compute_cartesian_path()
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Oct 11, 2024
1 parent 6ce67d1 commit c98147c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ def plan_cartesian_path(self, scale=1):
# ignoring the check for infeasible jumps in joint space, which is sufficient
# for this tutorial.
(plan, fraction) = move_group.compute_cartesian_path(
waypoints, 0.01, 0.0 # waypoints to follow # eef_step
) # jump_threshold
waypoints, 0.01 # waypoints to follow # eef_step
)

# Note: We are just planning, not asking move_group to actually move the robot yet:
return plan, fraction
Expand Down

0 comments on commit c98147c

Please sign in to comment.