matchOpenWay method

void matchOpenWay(
  1. Way way,
  2. Tile tile,
  3. List<Shape> matchingList
)

Implementation

void matchOpenWay(Way way, Tile tile, List<Shape> matchingList) {
  if (matches(way.tags, tile.indoorLevel)) {
    matchingList.addAll((instructions as ShapeInstructions).shapeOpenWays);
    subRules.forEach((element) {
      element.matchOpenWay(way, tile, matchingList);
    });
  }
}