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: 24.3.420.0 (24.3.420.0)
Syntaxpublic SpecifiedCollectionCoverageGriddingTechnique(
IEnumerable<double> points
)
Public Sub New (
points As IEnumerable(Of Double)
)
public:
SpecifiedCollectionCoverageGriddingTechnique(
IEnumerable<double>^ points
)
new :
points : IEnumerable<float> -> SpecifiedCollectionCoverageGriddingTechnique
Parameters
- points
- Type: System.Collections.Generic.IEnumerable<Double>
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