Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phantom link added to Panda robot #427

Open
ssowrira opened this issue Mar 26, 2024 · 1 comment
Open

Phantom link added to Panda robot #427

ssowrira opened this issue Mar 26, 2024 · 1 comment

Comments

@ssowrira
Copy link

When following the code examples, robot.plot method draws a phantom link between the end effector and robot base, creating a closed chain with the links of the robot.

A gif of a sample trajectory generated is attached for reference.
follower_robot_traj2

@petrvancjr
Copy link

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]:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants