SpecifiedCollectionCoverageGriddingTechnique Constructor  | 
 
            Initializes the gridding method with the specified collection.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Discrete
    Assembly:
   AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic SpecifiedCollectionCoverageGriddingTechnique(
	IEnumerable<double> points
)
Public Sub New ( 
	points As IEnumerable(Of Double)
)
public:
SpecifiedCollectionCoverageGriddingTechnique(
	IEnumerable<double>^ points
)
new : 
        points : IEnumerable<float> -> SpecifiedCollectionCoverageGriddingTechniqueParameters
- points
 - Type: System.Collections.GenericIEnumerableDouble
The collection of points. 
Exceptions
RemarksThe input collection will be copied and sorted in ascending order, and each point will be verified to be within the bounds.
See Also