| 132 | } |
| 133 | |
| 134 | Node* |
| 135 | BackgroundGrid::getNode(const GridIndex& index) |
| 136 | { |
| 137 | std::map<GridIndex,GridData*>::iterator it = data.find(index); |
| 138 | if (it == data.end()) return 0; |
| 139 | return it->second->node; |
| 140 | } |
| 141 | |
| 142 | bool |
| 143 | BackgroundGrid::hasGrid(const GridIndex& index) |
no test coverage detected