예제 #1
0
 private void AddCollection(IGeometryCollection gc)
 {
     for (int i = 0; i < gc.GetNumGeometries(); i++)
     {
         Geometry g = (Geometry)gc.GetGeometryN(i);
         Add(g);
     }
 }         // private void AddCollection(OGC.Geometries.IGeometryCollection gc)
예제 #2
0
 private void AddCollection(IGeometryCollection gc)
 {
     for( int i = 0; i < gc.GetNumGeometries(); i++ )
     {
         Geometry g = (Geometry)gc.GetGeometryN( i );
         Add( g );
     }
 }