Click or drag to resize

SpecifiedCollectionCoverageGriddingTechniqueGrid Method

Grids the coordinate.

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 IList<double> Grid(
	Bounds coordinateBounds,
	bool isCyclic
)

Parameters

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

Return Value

Type: IListDouble
A list of sorted grid points in the coordinate. The list is sorted in ascending order.

Implements

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