8000 Fix plotting of vellipse · maze516/robotics-toolbox-python@9b285c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b285c8

Browse files
committed
Fix plotting of vellipse
1 parent f58bd0e commit 9b285c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roboticstoolbox/robot/BaseRobot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2336,13 +2336,13 @@ def plot(
23362336
env.add(self, readonly=True, **kwargs)
23372337

23382338
if vellipse:
2339-
vell = self.vellipse(q, centre="ee")
2339+
vell = self.vellipse(q[0], centre="ee")
23402340
env.add(vell)
23412341
else:
23422342
vell = None
23432343

23442344
if fellipse:
2345-
fell = self.fellipse(q, centre="ee")
2345+
fell = self.fellipse(q[0], centre="ee")
23462346
env.add(fell)
23472347
else:
23482348
fell = None

0 commit comments

Comments
 (0)
0