checkConnectedInteriors method

void checkConnectedInteriors(
  1. GeometryGraph graph
)

Implementation

void checkConnectedInteriors(GeometryGraph graph) {
  ConnectedInteriorTester cit = new ConnectedInteriorTester(graph);
  if (!cit.isInteriorsConnected())
    validErr = new TopologyValidationError.withCoordinate(
        TopologyValidationError.DISCONNECTED_INTERIOR, cit.getCoordinate());
}