8000 fix bug for analytic IK · lars-x/robotics-toolbox-python@86f3c54 · GitHub
[go: up one dir, main page]

Skip to content

Commit 86f3c54

Browse files
committed
fix bug for analytic IK
1 parent c1a3267 commit 86f3c54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roboticstoolbox/robot/ikine_evaluate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# * T, the end-effector pose
1010
# * q0, the initial joint angles for solution
1111

12-
example = 'panda' # 'panda'
12+
example = 'puma' # 'panda'
1313

1414
if example == 'puma':
1515
# Puma robot case
@@ -49,7 +49,7 @@
4949
if hasattr(robot, "ikine_a"):
5050
a = (robot.ikine_a, # analytic solution
5151
"ikine_a",
52-
"sol = robot.ikine_a}(T)"
52+
"sol = robot.ikine_a(T)"
5353
)
5454
ikfuncs.insert(0, a)
5555

0 commit comments

Comments
 (0)
0