Phantom link added to Panda robot
ssowrira opened this issue · 1 comments
ssowrira commented
petrvancjr commented
Hi,
I fixed that by plotting all links except the last.
In file backends/PyPlot/RobotPlot.py:RobotPlot.draw()
Change line (~96):
for link in segment:
to
for link in segment[0:segment.__len__()-1]: