File: world_nested_model.sdf

package info (click to toggle)
sdformat 12.3.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,980 kB
  • sloc: cpp: 54,706; python: 3,729; javascript: 704; ruby: 366; sh: 97; ansic: 30; makefile: 16
file content (22 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" ?>
<sdf version="1.6">
  <world name="world_nested_model">
    <model name='top_level_model'>
      <link name='parent'/>
      <link name='child'/>
      <model name='nested_model'>
        <link name='nested_link01'/>
        <model name='nested_nested_model'>
          <link name='nested_nested_link01'/>
        </model>
      </model>
      <joint name='top_level_joint' type='revolute'>
        <parent>parent</parent>
        <child>child</child>
        <axis>
          <xyz>1 0 0</xyz>
        </axis>
      </joint>
    </model>
  </world>
</sdf>