astar.h
Go to the documentation of this file.
1 
2 namespace ast
3 {
4 
5 class point_t
6 {
7 public:
8  uint32_t x, y;
9 
10  point_t( uint32_t x, uint32_t y ) : x(x), y(y) {}
11 };
12 
13 bool astar( uint8_t* map,
14  uint32_t width,
15  uint32_t height,
16  const point_t start,
17  const point_t goal,
18  std::vector<point_t>& path );
19 
20 }
bool astar(uint8_t *map, uint32_t width, uint32_t height, const point_t start, const point_t goal, std::vector< point_t > &path)
Definition: findpath.cpp:180
Definition: astar.h:2
point_t(uint32_t x, uint32_t y)
Definition: astar.h:10
uint32_t x
Definition: astar.h:8
uint32_t y
Definition: astar.h:8


stage
Author(s): Richard Vaughan , Brian Gerkey , Reed Hedges , Andrew Howard , Toby Collett , Pooya Karimian , Jeremy Asher , Alex Couture-Beil , Geoff Biggs , Rich Mattes , Abbas Sadat
autogenerated on Mon Jun 10 2019 15:06:09