SpecifiedResolutionCoverageGriddingTechnique Constructor (Double, NullableDouble, 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 includeExactBounds
)
Public Sub New (
resolution As Double,
griddingStartPoint As Double?,
includeExactBounds As Boolean
)
public:
SpecifiedResolutionCoverageGriddingTechnique(
double resolution,
Nullable<double> griddingStartPoint,
bool includeExactBounds
)
new :
resolution : float *
griddingStartPoint : Nullable<float> *
includeExactBounds : 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. - includeExactBounds
- Type: SystemBoolean
A boolean indicating if the exact upper and lower bounds are to be included.
Exceptions Remarks The griddingStartPoint must lie within the coordinate bounds.
See Also