| 12 | namespace grid_map { |
| 13 | |
| 14 | GridMapIterator::GridMapIterator(const grid_map::GridMap& gridMap) |
| 15 | { |
| 16 | size_ = gridMap.getSize(); |
| 17 | startIndex_ = gridMap.getStartIndex(); |
| 18 | linearSize_ = size_.prod(); |
| 19 | linearIndex_ = 0; |
| 20 | isPastEnd_ = false; |
| 21 | } |
| 22 | |
| 23 | GridMapIterator::GridMapIterator(const GridMapIterator* other) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected