| 231 | } |
| 232 | |
| 233 | bool GridMap::getPosition(const Index& index, Position& position) const { |
| 234 | return getPositionFromIndex(position, index, length_, position_, resolution_, size_, startIndex_); |
| 235 | } |
| 236 | |
| 237 | bool GridMap::isInside(const Position& position) const { |
| 238 | return checkIfPositionWithinMap(position, length_, position_); |