Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public SpecifiedResolutionCoverageGriddingTechnique(
	double resolution,
	double? griddingStartPoint,
	bool includeExactLowerBound,
	bool includeExactUpperBound
)

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
ExceptionCondition
ArgumentExceptionThrown if resolution is not positive.
Remarks
The griddingStartPoint must lie within the coordinate bounds.
See Also