-
Notifications
You must be signed in to change notification settings - Fork 745
Expand file tree
/
Copy pathtest_model.xml
More file actions
49 lines (49 loc) · 1.39 KB
/
test_model.xml
File metadata and controls
49 lines (49 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<mujoco model="test">
<size memory="1K"/>
<compiler texturedir="textures"/>
<asset>
<texture name="texture" type="cube" file="deepmind.png"/>
<material name="mat_texture" texture="texture"/>
</asset>
<option timestep="0.01" wind="3 2 1">
<flag gravity="disable"/>
</option>
<visual>
<map znear="0.01" zfar="100"/>
</visual>
<default>
<site type="sphere" size="0.01 0.01 0.01"/>
<geom size="0.1 0.1 0.1" rgba="1 0 0 1"/>
<default class="big_and_green">
<geom size="1 1 1" rgba="0 1 0 0"/>
</default>
</default>
<worldbody>
<body name="b_0">
<freejoint name="b_0"/>
<inertial pos="0 0 0" mass="1"/>
<body name="b_0_0">
<joint name="b_0_0" type="ball"/>
<geom name="b_0_0" type="sphere" class="big_and_green"/>
<site name="attachment" pos="0.1 0.1 0.1" quat="0 1 0 0"/>
</body>
</body>
<body name="b_1" childclass="big_and_green">
<freejoint name="b_1"/>
<body name="b_1_0">
<joint name="b_1_0" type="ball"/>
<geom name="b_1_0" type="sphere" material="mat_texture"/>
</body>
</body>
</worldbody>
<contact>
<exclude name="exclude" body1="b_0" body2="b_1"/>
</contact>
<actuator>
<velocity name="b_0_0" joint="b_0_0"/>
<velocity name="b_1_0" joint="b_1_0"/>
</actuator>
<sensor>
<user name="dummy" dim="1" user="0 1 0 1" />
</sensor>
</mujoco>