8000
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.
1 parent bb90ab4 commit bfaa527Copy full SHA for bfaa527
roboticstoolbox/robot/ERobot.py
@@ -1110,8 +1110,6 @@ def fkine(
1110
# we work with NumPy arrays not SE2/3 classes for speed
1111
q = getmatrix(q, (None, self.n))
1112
1113
- q = self.toradians(q)
1114
-
1115
end, start, etool = self._get_limit_links(end, start)
1116
1117
if etool is not None and tool is not None:
@@ -1127,7 +1125,7 @@ def fkine(
1127
1125
T = SE3.Empty()
1128
1126
1129
for k, qk in enumerate(q):
1130
+ qk = self.toradians(qk)
1131
link = end # start with last link
1132
1133
# add tool if provided
0 commit comments