| 157 | } |
| 158 | |
| 159 | void getPositionOfDataStructureOrigin(const Position& position, |
| 160 | const Length& mapLength, |
| 161 | Position& positionOfOrigin) |
| 162 | { |
| 163 | Vector vectorToOrigin; |
| 164 | getVectorToOrigin(vectorToOrigin, mapLength); |
| 165 | positionOfOrigin = position + vectorToOrigin; |
| 166 | } |
| 167 | |
| 168 | bool getIndexShiftFromPositionShift(Index& indexShift, |
| 169 | const Vector& positionShift, |
nothing calls this directly
no test coverage detected