Click or drag to resize

SpecifiedCollectionCoverageGriddingTechnique.Grid Method

Grids the coordinate.

Namespace:  AGI.Foundation.Geometry.Discrete
Assembly:  AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public IList<double> Grid(
	Bounds coordinateBounds,
	bool isCyclic
)

Parameters

coordinateBounds
Type: AGI.Foundation.Bounds
The bounds for the coordinate that is to be gridded. These bounds are inclusive.
isCyclic
Type: System.Boolean
Indicates if the coordinate is cyclic (i.e. an angle). Winding must be removed before gridding.

Return Value

Type: IList<Double>
A list of sorted grid points in the coordinate. The list is sorted in ascending order.

Implements

ICoverageGriddingTechnique.Grid(Bounds, Boolean)
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if any point within the collection is outside of the bounds of the gridding coordinate.
See Also