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 d8fe2fc commit 8c53476Copy full SHA for 8c53476
roboticstoolbox/robot/ETS.py
@@ -262,7 +262,7 @@ def jindices(self) -> ndarray:
262
>>> e = ET.Rz(jindex=1) * ET.tx(jindex=2) * ET.Rz(jindex=1) * ET.tx(1)
263
>>> e.jointset()
264
"""
265
- return array([self[j].jindex for j in self.joints()]) # type: ignore
+ return array([j.jindex for j in self.joints()]) # type: ignore
266
267
@c_property
268
def qlim(self):
0 commit comments