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.3.420.0 (24.3.420.0)
Syntax
public EllipsoidSurfaceRegionCoverageGridCell(
	ICollection<Cartographic> gridBoundaryVertices,
	double area,
	Ellipsoid shape
)

Parameters

gridBoundaryVertices
Type: System.Collections.Generic.ICollection<Cartographic>
The vertices for this cell as computed by the gridding algorithm.
area
Type: System.Double
The surface area of this region as computed by the gridding algorithm.
shape
Type: AGI.Foundation.Geometry.Shapes.Ellipsoid
The ellipsoid on which this grid cell is defined.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when gridBoundaryVertices or shape is null.
ArgumentOutOfRangeException Thrown when the area is negative.
ArgumentException Thrown when the number of boundary vertices is less than 3.
See Also