Skip to content

Commit

Permalink
fix typo in baxter-util.l
Browse files Browse the repository at this point in the history
  • Loading branch information
knorth55 committed Nov 26, 2016
1 parent 992cef5 commit 075386d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsk_baxter_robot/baxtereus/baxter-util.l
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
(let ((r) (prev-av (send self :angle-vector)))
(setq r (send-super* :inverse-kinematics target-coords :avoid-collision-distance avoid-collision-distance :warnp nil :dump-command nil args))
(unless r ;;
(format *error-output* "; failed for normal ik, staring from relaxed position~%")
(format *error-output* "; failed for normal ik, starting from relaxed position~%")
(let ((current-coords (send (cadr (memq :move-target args)) :copy-worldcoords)))
(send-super* :inverse-kinematics current-coords :rotation-axis nil :avoid-nspace-gain 0.1 :avoid-weight-gain 0.1 :stop 200 :avoid-collision-distance avoid-collision-distance :debug-view nil args)
(setq r (send-super* :inverse-kinematics target-coords :warnp nil :dump-command nil args))
Expand All @@ -22,7 +22,7 @@
(send self :angle-vector prev-av))
))
(unless r ;;
(format *error-output* "; failed for normal ik, try to move arms vely slowly~%")
(format *error-output* "; failed for normal ik, try to move arms very slowly~%")
(let ((step 0.0)
(current-coords (send (cadr (memq :move-target args)) :copy-worldcoords)))
(setq r t)
Expand Down

0 comments on commit 075386d

Please sign in to comment.