PyramidalBounds Constructor  | 
 
            Holds two 
Pyramidal values which form the bounds of a range of pyramidal coordinates.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic PyramidalBounds(
	Pyramidal lowerBound,
	Pyramidal upperBound
)
Public Sub New ( 
	lowerBound As Pyramidal,
	upperBound As Pyramidal
)
public:
PyramidalBounds(
	Pyramidal lowerBound, 
	Pyramidal upperBound
)
new : 
        lowerBound : Pyramidal * 
        upperBound : Pyramidal -> PyramidalBoundsParameters
- lowerBound
 - Type: AGI.Foundation.CoordinatesPyramidal
The minimal values defining the bounds. - upperBound
 - Type: AGI.Foundation.CoordinatesPyramidal
The maximal values defining the bounds. 
Exceptions| Exception | Condition | 
|---|
| ArgumentException | 
            Thrown when the upperBound is less than the lowerBound or when
            one value in any of the coordinates is NaN and the other is not.
             | 
See Also