Esempio n. 1
0
 public static IGeometry Combine(ICollection<IGeometry> geoms)
 {
     var combiner = new GeometryCombiner(geoms);
     return combiner.Combine();
 }
Esempio n. 2
0
 public static IGeometry Combine(IGeometry g0, IGeometry g1, IGeometry g2)
 {
     var combiner = new GeometryCombiner(CreateList(g0, g1, g2));
     return combiner.Combine();
 }