mayMoveToClosed method
Implementation
bool mayMoveToClosed(Waypath waypath) {
assert(_openOuters.contains(waypath));
if (waypath.isClosedWay()) {
_openOuters.remove(waypath);
_closedOuters.add(waypath);
return true;
}
return false;
}