-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9497438
commit 348288b
Showing
3 changed files
with
38 additions
and
1 deletion.
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
18 changes: 17 additions & 1 deletion
18
curiosity_mars_rover_description/launch/curiosity_mars_rover_start.launch
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
19 changes: 19 additions & 0 deletions
19
curiosity_mars_rover_description/launch/put_robot_in_world.launch
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"?> | ||
<launch> | ||
<arg name="x" default="0.0" /> | ||
<arg name="y" default="0.0" /> | ||
<arg name="z" default="0.0" /> | ||
<arg name="roll" default="0.0"/> | ||
<arg name="pitch" default="0.0"/> | ||
<arg name="yaw" default="0.0"/> | ||
|
||
|
||
<include file="$(find curiosity_mars_rover_description)/launch/curiosity_mars_rover_start.launch"> | ||
<arg name="x" value="$(arg x)" /> | ||
<arg name="y" value="$(arg y)" /> | ||
<arg name="z" value="$(arg z)" /> | ||
<arg name="roll" value="$(arg roll)"/> | ||
<arg name="pitch" value="$(arg pitch)"/> | ||
<arg name="yaw" value="$(arg yaw)" /> | ||
</include> | ||
</launch> |