CuboidCoverageGrid Constructor (Double, Double, Double, ICoverageGriddingTechnique, ReferenceFrame, Boolean, Boolean) | 
 
            Initializes a cuboid grid with a single gridding technique used for each coordinate. The grid is defined in the input 
ReferenceFrame.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Discrete
    Assembly:
   AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic CuboidCoverageGrid(
	double xAxisLength,
	double yAxisLength,
	double zAxisLength,
	ICoverageGriddingTechnique griddingTechnique,
	ReferenceFrame frame,
	bool useCellVolumeForWeight,
	bool saveGridCell
)
Public Sub New ( 
	xAxisLength As Double,
	yAxisLength As Double,
	zAxisLength As Double,
	griddingTechnique As ICoverageGriddingTechnique,
	frame As ReferenceFrame,
	useCellVolumeForWeight As Boolean,
	saveGridCell As Boolean
)
public:
CuboidCoverageGrid(
	double xAxisLength, 
	double yAxisLength, 
	double zAxisLength, 
	ICoverageGriddingTechnique^ griddingTechnique, 
	ReferenceFrame^ frame, 
	bool useCellVolumeForWeight, 
	bool saveGridCell
)
new : 
        xAxisLength : float * 
        yAxisLength : float * 
        zAxisLength : float * 
        griddingTechnique : ICoverageGriddingTechnique * 
        frame : ReferenceFrame * 
        useCellVolumeForWeight : bool * 
        saveGridCell : bool -> CuboidCoverageGridParameters
- xAxisLength
 - Type: SystemDouble
The length in x. - yAxisLength
 - Type: SystemDouble
The length in y. - zAxisLength
 - Type: SystemDouble
The length 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