This repository was archived by the owner on Jun 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 1+ using System ;
12using System . Collections . Generic ;
23
34namespace GeoAPI . Geometries
@@ -181,8 +182,17 @@ public interface IGeometryFactory
181182 /// </summary>
182183 /// <param name="coordinates">An array (without null elements), or an empty array, or <c>null</c></param>
183184 /// <returns>A <see cref="IMultiPoint"/> object</returns>
185+ [ Obsolete ( "Use CreateMultiPointFromCoords" ) ]
184186 IMultiPoint CreateMultiPoint ( Coordinate [ ] coordinates ) ;
185187
188+ /// <summary>
189+ /// Creates a <see cref="IMultiPoint"/> using the given Coordinates.
190+ /// A null or empty array will create an empty MultiPoint.
191+ /// </summary>
192+ /// <param name="coordinates">An array (without null elements), or an empty array, or <c>null</c></param>
193+ /// <returns>A <see cref="IMultiPoint"/> object</returns>
194+ IMultiPoint CreateMultiPointFromCoords ( Coordinate [ ] coordinates ) ;
195+
186196 /// <summary>
187197 /// Creates a <see cref="IMultiPoint"/> using the given Points.
188198 /// A null or empty array will create an empty MultiPoint.
You can’t perform that action at this time.
0 commit comments