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 54dab45 commit d7f8ef4Copy full SHA for d7f8ef4
roboticstoolbox/robot/ETS.py
@@ -929,6 +929,25 @@ def inv(self):
929
inv *= et
930
return inv
931
932
+ def plot(self, *args, **kwargs):
933
+ from roboticstoolbox.robot.ERobot import ERobot, ERobot2
934
+
935
+ if isinstance(self, ETS):
936
+ robot = ERobot(self)
937
+ else:
938
+ robot = ERobot2(self)
939
940
+ robot.plot(*args, **kwargs)
941
942
+ def teach(self, *args, **kwargs):
943
944
945
946
947
948
949
950
+ robot.teach(*args, **kwargs)
951
952
class ETS(BaseETS):
953
"""
0 commit comments