SpecifiedResolutionCoverageGriddingTechnique Constructor (Double, NullableDouble, Boolean, Boolean) |
Initializes the gridding method.
Namespace:
AGI.Foundation.Geometry.Discrete
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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: SystemDouble
The space between points in the coordinate. - griddingStartPoint
- Type: SystemNullableDouble
The optional starting point for the gridding algorithm. If this is then gridding will begin at the lower bound. Gridding proceeds in both directions from this point. - includeExactLowerBound
- Type: SystemBoolean
A boolean indicating if the exact lower bounds is to be included. - includeExactUpperBound
- Type: SystemBoolean
A boolean indicating if the exact upper bounds is to be included.
Exceptions Remarks The griddingStartPoint must lie within the coordinate bounds.
See Also