-
Beta Was this translation helpful? Give feedback.
Answered by
jorisv
Apr 9, 2024
Replies: 1 comment 1 reply
-
Hello @TJBetter, I think your URDF model is not the same than in your document.
In your document, you're interested at a point at 1 meter from link2 in the X axis. You need to add a new frame. <link name="end_effector" />
<joint name="joint3" type="fixed">
<origin xyz="1 0 0" rpy="0 0 0" />
<parent link="link2"/>
<child link="end_effector"/>
</joint> Then, you need to use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jcarpent
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @TJBetter,
I think your URDF model is not the same than in your document.
In your document, you're interested at a point at 1 meter from link2 in the X axis. You need to add a new frame.
You can do it by adding a new link attach to link2 with a fixed joint:
Then, you need to use
pin.ReferenceFrame.LOCAL_WORLD_ALIGNED
and …