Click or drag to resize

CuboidCoverageGrid Constructor (Bounds, Bounds, Bounds, ICoverageGriddingTechnique, ICoverageGriddingTechnique, ICoverageGriddingTechnique, ReferenceFrame, Boolean, Boolean)

Initializes a cuboid grid with a single gridding technique used for each coordinate. Each coordinate is gridded from the minimum value to the maximum value specified in that coordinate's respective bounds structure. The grid is defined in the input ReferenceFrame.

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 CuboidCoverageGrid(
	Bounds xAxisBounds,
	Bounds yAxisBounds,
	Bounds zAxisBounds,
	ICoverageGriddingTechnique xAxisGriddingTechnique,
	ICoverageGriddingTechnique yAxisGriddingTechnique,
	ICoverageGriddingTechnique zAxisGriddingTechnique,
	ReferenceFrame frame,
	bool useCellVolumeForWeight,
	bool saveGridCell
)

Parameters

xAxisBounds
Type: AGI.Foundation.Bounds
The bounds in x.
yAxisBounds
Type: AGI.Foundation.Bounds
The bounds in y.
zAxisBounds
Type: AGI.Foundation.Bounds
The bounds in z.
xAxisGriddingTechnique
Type: AGI.Foundation.Geometry.Discrete.ICoverageGriddingTechnique
The gridding technique to be used for the x-axis.
yAxisGriddingTechnique
Type: AGI.Foundation.Geometry.Discrete.ICoverageGriddingTechnique
The gridding technique to be used for the y-axis.
zAxisGriddingTechnique
Type: AGI.Foundation.Geometry.Discrete.ICoverageGriddingTechnique
The gridding technique to be used for the z-axis.
frame
Type: AGI.Foundation.Geometry.ReferenceFrame
The ReferenceFrame in which this cube is defined.
useCellVolumeForWeight
Type: System.Boolean
A boolean that specifies if the volume of each cell should be used as that cell's weight.
saveGridCell
Type: System.Boolean
A boolean that specifies if the grid point's cell should be saved.
See Also