Click or drag to resize

EllipsoidSurfaceRegionCoverageGridCell Constructor

Initializes this 2D grid cell with the specified parameters.

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 EllipsoidSurfaceRegionCoverageGridCell(
	ICollection<Cartographic> gridBoundaryVertices,
	double area,
	Ellipsoid shape
)

Parameters

gridBoundaryVertices
Type: System.Collections.GenericICollectionCartographic
The vertices for this cell as computed by the gridding algorithm.
area
Type: SystemDouble
The surface area of this region as computed by the gridding algorithm.
shape
Type: AGI.Foundation.Geometry.ShapesEllipsoid
The ellipsoid on which this grid cell is defined.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when gridBoundaryVertices or shape is .
ArgumentOutOfRangeException Thrown when the area is negative.
ArgumentException Thrown when the number of boundary vertices is less than 3.
See Also