Complete the code to define the name of the Gazebo world.
<world name="[1]"> <!-- World content here --> </world>
The name attribute sets the world name. Here, robot_world is the chosen name.
Complete the code to include a ground plane model in the Gazebo world.
<include>
<uri>[1]</uri>
</include><include> tag.The ground plane model is included using the URI model://ground_plane.
Fix the error in the light element by completing the missing type attribute.
<light name="sun" type="[1]"> <cast_shadows>true</cast_shadows> <pose>0 0 10 0 0 0</pose> </light>
The directional type is used for sunlight in Gazebo worlds.
Fill both blanks to define a model's pose with position and orientation.
<model name="box"> <pose>[1] [2]</pose> <!-- Model details --> </model>
The pose attribute requires position (x y z) and orientation (roll pitch yaw). Here, position is 0 0 0 and orientation is 1 2 3.
Fill all three blanks to create a light element with name, type, and cast_shadows attribute.
<light name="[1]" type="[2]"> <cast_shadows>[3]</cast_shadows> <pose>0 0 10 0 0 0</pose> </light>
The light is named 'lamp', is of type 'directional', and casts shadows set to 'true'.
