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

DART support for a link being child of two different joints #1933

Closed
osrf-migration opened this issue Apr 15, 2016 · 3 comments
Closed

DART support for a link being child of two different joints #1933

osrf-migration opened this issue Apr 15, 2016 · 3 comments
Labels

Comments

@osrf-migration
Copy link

Original report (archived issue) by Louise Poubel (Bitbucket: chapulina, GitHub: chapulina).


DART segfaults when destroying the world if there is a link which is the child of two different joints. This happens in the PR2 for example, but any simple model with 3 links and 2 joints is sufficient to trigger the problem:

#!xml


<sdf version="1.5">
  <world name="default">
    <model name="box">
      <link name="link1" />
      <link name="link2" />
      <link name="link3" />
      <joint name="joint1" type="revolute">
        <parent>link1</parent>
        <child>link3</child>
        <axis>
          <xyz>1 0 0</xyz>
        </axis>
      </joint>
      <joint name="joint2" type="revolute">
        <parent>link2</parent>
        <child>link3</child>
        <axis>
          <xyz>0 1 0</xyz>
        </axis>
      </joint>
    </model>
  </world>
</sdf>

This looks like an upstream issue.

@osrf-migration
Copy link
Author

Original comment by Nate Koenig (Bitbucket: Nathan Koenig).


  • set version to "all"

@osrf-migration
Copy link
Author

Original comment by Peter Horak (Bitbucket: pchorak).


pull request #2756 adds support for kinematic loops (and multiple parent joints)

@osrf-migration
Copy link
Author

Original comment by Steve Peters (Bitbucket: Steven Peters, GitHub: scpeters).


  • changed state from "new" to "resolved"

pull request #2756

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

No branches or pull requests

1 participant