예제 #1
0
        private void CheckConnectedInteriors(GeometryGraph graph)
        {
            ConnectedInteriorTester cit = new ConnectedInteriorTester(graph);

            if (!cit.IsInteriorsConnected())
            {
                _validErr = new TopologyValidationError(
                    TopologyValidationError.DisconnectedInterior,
                    cit.GetCoordinate());
            }
        }
예제 #2
0
		private void CheckConnectedInteriors(GeometryGraph graph)
		{
			
			ConnectedInteriorTester cit = new ConnectedInteriorTester(graph);
			if (! cit.IsInteriorsConnected())
			{
				_validErr = new TopologyValidationError(
					TopologyValidationError.DisconnectedInterior,
					cit.GetCoordinate());
			}	
		}