SpecifiedResolutionCoverageGriddingTechnique Constructor (Double, Nullable<Double>, Boolean, Boolean) |
Initializes the gridding method.
Namespace:
AGI.Foundation.Geometry.Discrete
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic SpecifiedResolutionCoverageGriddingTechnique(
double resolution,
double? griddingStartPoint,
bool includeExactLowerBound,
bool includeExactUpperBound
)
Public Sub New (
resolution As Double,
griddingStartPoint As Double?,
includeExactLowerBound As Boolean,
includeExactUpperBound As Boolean
)
public:
SpecifiedResolutionCoverageGriddingTechnique(
double resolution,
Nullable<double> griddingStartPoint,
bool includeExactLowerBound,
bool includeExactUpperBound
)
new :
resolution : float *
griddingStartPoint : Nullable<float> *
includeExactLowerBound : bool *
includeExactUpperBound : bool -> SpecifiedResolutionCoverageGriddingTechnique
Parameters
- resolution
- Type: System.Double
The space between points in the coordinate. - griddingStartPoint
- Type: System.Nullable<Double>
The optional starting point for the gridding algorithm. If this is null then gridding will begin at the lower bound. Gridding proceeds in both directions from this point. - includeExactLowerBound
- Type: System.Boolean
A boolean indicating if the exact lower bounds is to be included. - includeExactUpperBound
- Type: System.Boolean
A boolean indicating if the exact upper bounds is to be included.
Exceptions
RemarksThe griddingStartPoint must lie within the coordinate bounds.
See Also