CylindricalBounds Constructor |
Holds two
Cylindrical values which form the bounds of a range of cylindrical coordinates.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic CylindricalBounds(
Cylindrical lowerBound,
Cylindrical upperBound
)
Public Sub New (
lowerBound As Cylindrical,
upperBound As Cylindrical
)
public:
CylindricalBounds(
Cylindrical lowerBound,
Cylindrical upperBound
)
new :
lowerBound : Cylindrical *
upperBound : Cylindrical -> CylindricalBounds
Parameters
- lowerBound
- Type: AGI.Foundation.Coordinates.Cylindrical
The minimal values defining the bounds. - upperBound
- Type: AGI.Foundation.Coordinates.Cylindrical
The maximal values defining the bounds.
ExceptionsException | 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