-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define //joint_state in joint_state.sdf
Include joint_state.sdf from model_state.sdf and state.sdf for //world/joint states. Signed-off-by: Steve Peters <[email protected]>
- Loading branch information
Showing
4 changed files
with
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ set (sdfs | |
imu.sdf | ||
inertial.sdf | ||
joint.sdf | ||
joint_state.sdf | ||
lidar.sdf | ||
light.sdf | ||
light_state.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,16 @@ | ||
<!-- State information for a joint --> | ||
<element name="joint_state" required="*"> | ||
<description>Joint angle</description> | ||
|
||
<attribute name="name" type="string" default="__default__" required="1"> | ||
<description>Name of the joint</description> | ||
</attribute> | ||
|
||
<element name="angle" type="double" default="0" required="+"> | ||
<attribute name="axis" type="unsigned int" default="0" required="1"> | ||
<description>Index of the axis.</description> | ||
</attribute> | ||
|
||
<description>Angle of an axis</description> | ||
</element> | ||
</element> <!-- End Joint --> |
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