-
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.
Merge pull request #23 from SoftServeSAG/F#2_intoduce_hidden_frontier…
…s_priority F#2 intoduce hidden frontiers priority
- Loading branch information
Showing
5 changed files
with
47 additions
and
21 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
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,18 @@ | ||
// | ||
// Created by user on 3/19/19. | ||
// | ||
|
||
#ifndef PROJECT_EXPLORE_UTILS_H | ||
#define PROJECT_EXPLORE_UTILS_H | ||
|
||
#include <costmap_2d/costmap_2d.h> | ||
|
||
namespace frontier_exploration{ | ||
static geometry_msgs::Point makePointMsg(const double x, const double y, const double z){ | ||
geometry_msgs::Point p; | ||
p.x = x; p.y = y; p.z = z; | ||
return p; | ||
} | ||
} | ||
|
||
#endif //PROJECT_EXPLORE_UTILS_H |
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