-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ros/quarkytale/joint_support
Support for universal and ball joint in sdf
- Loading branch information
Showing
7 changed files
with
166 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
sdformat_test_files/models/joint_prismatic_no_axis/joint_prismatic_no_axis.sdf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<sdf version="1.7"> | ||
<model name="joint_prismatic_no_axis"> | ||
<link name="link_1"> | ||
<visual name="link_1_visual"> | ||
<geometry> | ||
<box> | ||
<size>0.1 0.2 0.4</size> | ||
</box> | ||
</geometry> | ||
</visual> | ||
<collision name="link_1_collision"> | ||
<geometry> | ||
<box> | ||
<size>0.1 0.2 0.4</size> | ||
</box> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass>12.3</mass> | ||
<inertia> | ||
<ixx>0.205</ixx> | ||
<ixy>0</ixy> | ||
<ixz>0</ixz> | ||
<iyy>0.17425</iyy> | ||
<iyz>0</iyz> | ||
<izz>0.05125</izz> | ||
</inertia> | ||
</inertial> | ||
</link> | ||
<link name="link_2"> | ||
<pose>0.1 0 0.1 0 0 0</pose> | ||
<visual name="link_2_visual"> | ||
<geometry> | ||
<box> | ||
<size>0.1 0.2 0.3</size> | ||
</box> | ||
</geometry> | ||
</visual> | ||
<collision name="link_2_collision"> | ||
<geometry> | ||
<box> | ||
<size>0.1 0.2 0.3</size> | ||
</box> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass>1.23</mass> | ||
<inertia> | ||
<ixx>0.013325</ixx> | ||
<ixy>0</ixy> | ||
<ixz>0</ixz> | ||
<iyy>0.01025</iyy> | ||
<iyz>0</iyz> | ||
<izz>0.005125</izz> | ||
</inertia> | ||
</inertial> | ||
</link> | ||
|
||
<joint name="joint_prismatic" type="prismatic"> | ||
<parent>link_1</parent> | ||
<child>link_2</child> | ||
</joint> | ||
</model> | ||
</sdf> |
19 changes: 19 additions & 0 deletions
19
sdformat_test_files/models/joint_prismatic_no_axis/model.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<model> | ||
<name>joint_prismatic_no_axis</name> | ||
<version>1.0</version> | ||
<sdf version="1.7">joint_prismatic_no_axis.sdf</sdf> | ||
|
||
<author> | ||
<name>Shane Loretz</name> | ||
<email>[email protected]</email> | ||
</author> | ||
<author> | ||
<name>Dharini Dutia</name> | ||
<email>[email protected]</email> | ||
</author> | ||
|
||
<description> | ||
A model with two links connected by a prismatic joint having no axis described. | ||
</description> | ||
</model> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters