Skip to content

Commit 52c3eed

Browse files
committed
Fix copy-paste error.
1 parent 8fcf481 commit 52c3eed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/test_fmm3d.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ int main(int argc, char **argv)
1717
{
1818
// A bit of shorthand.
1919
typedef nDGridMap<FMCell, 3> FMGrid3D;
20-
typedef array<unsigned int, 3> Coord2D;
20+
typedef array<unsigned int, 3> Coord3D;
2121

2222
// Grid, start and goal definition.
2323
FMGrid3D grid_fmm;
2424
MapLoader::loadMapFromText(argv[1], grid_fmm);
25-
Coord2D init_point = {5, 5, 5};
25+
Coord3D init_point = {5, 5, 5};
2626

2727
// Solvers declaration.
2828
std::vector<Solver<FMGrid3D>*> solvers;

0 commit comments

Comments
 (0)