-
Notifications
You must be signed in to change notification settings - Fork 54
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
Showing
7 changed files
with
75 additions
and
27 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
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 |
---|---|---|
@@ -1,24 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>envsim</name> | ||
<version>0.0.1</version> | ||
<description>ROS-Wrapper for AgiLib</description> | ||
<name>envsim</name> | ||
<version>0.0.1</version> | ||
<description>ROS-Wrapper for AgiLib</description> | ||
|
||
<maintainer email="foehn@ifi.uzh.ch">foehnph</maintainer> | ||
<maintainer email="song@ifi.uzh.ch">Yunlong Song</maintainer> | ||
|
||
<license>GNU GPL</license> | ||
<license>GNU GPL</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>catkin_simple</buildtool_depend> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>catkin_simple</buildtool_depend> | ||
|
||
<depend>agilib</depend> | ||
<depend>agiros</depend> | ||
<depend>roscpp</depend> | ||
<depend>rosgraph_msgs</depend> | ||
|
||
|
||
<depend>cv_bridge</depend> | ||
<depend>flightlib</depend> | ||
<depend>image_transport</depend> | ||
<depend>agilib</depend> | ||
<depend>agiros</depend> | ||
<depend>cv_bridge</depend> | ||
<depend>envsim_msgs</depend> | ||
<depend>flightlib</depend> | ||
<depend>image_transport</depend> | ||
<depend>roscpp</depend> | ||
<depend>rosgraph_msgs</depend> | ||
|
||
</package> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cmake_minimum_required(VERSION 3.0.0) | ||
project(envsim_msgs) | ||
|
||
add_compile_options(-std=c++17) | ||
add_compile_options(-O3) | ||
|
||
find_package(catkin_simple REQUIRED) | ||
catkin_simple(ALL_DEPS_REQUIRED) | ||
|
||
cs_install() | ||
cs_export() |
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,5 @@ | ||
# Position of obstacle | ||
geometry_msgs/Vector3 position | ||
|
||
# Scale of obstacle | ||
float64 scale |
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,10 @@ | ||
Header header | ||
|
||
# Time [s] | ||
float64 t | ||
|
||
# Number of obstacles in message | ||
int64 num | ||
|
||
# Obstacle array | ||
envsim_msgs/Obstacle[] obstacles |
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"?> | ||
<package format="2"> | ||
<name>envsim_msgs</name> | ||
<version>0.0.0</version> | ||
<description>The envsim_msgs package</description> | ||
|
||
<maintainer email="[email protected]">Elia Kaufmann</maintainer> | ||
<license>MIT</license> | ||
|
||
<author>Elia Kaufmann</author> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>catkin_simple</buildtool_depend> | ||
|
||
<depend>geometry_msgs</depend> | ||
<depend>message_generation</depend> | ||
<depend>std_msgs</depend> | ||
|
||
</package> |