Click or drag to resize

SpecifiedCoverageGrid Constructor (ReferenceFrame, IListPoint, IListScalar)

Initializes the grid 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 SpecifiedCoverageGrid(
	ReferenceFrame referenceFrame,
	IList<Point> gridPoints,
	IList<Scalar> weights
)

Parameters

referenceFrame
Type: AGI.Foundation.GeometryReferenceFrame
The reference frame used for the grid points.
gridPoints
Type: System.Collections.GenericIListPoint
A list of Points that represent the grid points.
weights
Type: System.Collections.GenericIListScalar
A list of weights that are to be used with the points.
Exceptions
ExceptionCondition
ArgumentExceptionThrown if the number of grid points does not equal the number of weights.
ArgumentNullExceptionThrown if any of the parameters are .
Remarks
Note that the number of grid points must be equal to the number of weights. The weights are paired with the grid points in order.
See Also