CuboidCoverageGrid Constructor (Bounds, Bounds, Bounds, 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.2.419.0 (24.2.419.0)
Syntax public CuboidCoverageGrid(
Bounds xAxisBounds,
Bounds yAxisBounds,
Bounds zAxisBounds,
ICoverageGriddingTechnique griddingTechnique,
ReferenceFrame frame,
bool useCellVolumeForWeight,
bool saveGridCell
)
Public Sub New (
xAxisBounds As Bounds,
yAxisBounds As Bounds,
zAxisBounds As Bounds,
griddingTechnique As ICoverageGriddingTechnique,
frame As ReferenceFrame,
useCellVolumeForWeight As Boolean,
saveGridCell As Boolean
)
public:
CuboidCoverageGrid(
Bounds xAxisBounds,
Bounds yAxisBounds,
Bounds zAxisBounds,
ICoverageGriddingTechnique^ griddingTechnique,
ReferenceFrame^ frame,
bool useCellVolumeForWeight,
bool saveGridCell
)
new :
xAxisBounds : Bounds *
yAxisBounds : Bounds *
zAxisBounds : Bounds *
griddingTechnique : ICoverageGriddingTechnique *
frame : ReferenceFrame *
useCellVolumeForWeight : bool *
saveGridCell : bool -> CuboidCoverageGrid
Parameters
- xAxisBounds
- Type: AGI.FoundationBounds
The bounds in x. - yAxisBounds
- Type: AGI.FoundationBounds
The bounds in y. - zAxisBounds
- Type: AGI.FoundationBounds
The bounds in z. - griddingTechnique
- Type: AGI.Foundation.Geometry.DiscreteICoverageGriddingTechnique
The gridding technique to be used for all three dimensions. - frame
- Type: AGI.Foundation.GeometryReferenceFrame
The ReferenceFrame in which this cube is defined. - useCellVolumeForWeight
- Type: SystemBoolean
A boolean that specifies if the volume of each cell should be used as that cell's weight. - saveGridCell
- Type: SystemBoolean
A boolean that specifies if the grid point's cell should be saved.
See Also