SpecifiedCollectionCoverageGriddingTechniqueGrid Method  | 
 
            Grids the coordinate.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Discrete
    Assembly:
   AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic IList<double> Grid(
	Bounds coordinateBounds,
	bool isCyclic
)
Public Function Grid ( 
	coordinateBounds As Bounds,
	isCyclic As Boolean
) As IList(Of Double)
public:
virtual IList<double>^ Grid(
	Bounds coordinateBounds, 
	bool isCyclic
) sealed
abstract Grid : 
        coordinateBounds : Bounds * 
        isCyclic : bool -> IList<float> 
override Grid : 
        coordinateBounds : Bounds * 
        isCyclic : bool -> IList<float> 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: 
IListDoubleA list of sorted grid points in the coordinate. The list is sorted in ascending order.
Implements
ICoverageGriddingTechniqueGrid(Bounds, Boolean)
Exceptions| Exception | Condition | 
|---|
| InvalidOperationException | Thrown if any point within the collection is outside of the bounds of the gridding coordinate. | 
See Also