Ball joint SDF

Official Python bindings with a focus on reinforcement learning and robotics.
Post Reply
cmon
Posts: 3
Joined: Tue May 21, 2019 5:54 pm

Ball joint SDF

Post by cmon »

Good day,

I'm trying out all the joints but cannot get the ball joint to work in SDF using pybullet.loadSDF("model.sdf"). The following code works if I change type to "revolute", it defaults to axis <1 0 0>.

Code: Select all

<joint name="Ball1" type="ball">
	<parent>RigidGroup3</parent>
	<child>RigidGroup4</child>
	<pose>0 0 0 0 0 0</pose>
</joint>
Should I stack revolute joints as a workaround?
cmon
Posts: 3
Joined: Tue May 21, 2019 5:54 pm

Re: Ball joint SDF

Post by cmon »

type ball changed to spherical works
Post Reply