SpecifiedNumberOfPointsCoverageGriddingTechniqueGrid Method |
Grids the coordinate.
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 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)See Also