| 70 | } |
| 71 | |
| 72 | AnalyticalFunctions createSaddleWorld(grid_map::GridMap *map) |
| 73 | { |
| 74 | AnalyticalFunctions func; |
| 75 | |
| 76 | func.f_ = [](double x,double y) { |
| 77 | return (x*x-y*y); |
| 78 | }; |
| 79 | |
| 80 | fillGridMap(map, func); |
| 81 | |
| 82 | return func; |
| 83 | |
| 84 | } |
| 85 | |
| 86 | AnalyticalFunctions createSineWorld(grid_map::GridMap *map) |
| 87 | { |
no test coverage detected