CartesianBounds Constructor |
Holds two
Cartesian values which form the bounds of a range of cartesian coordinates.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public CartesianBounds(
Cartesian lowerBound,
Cartesian upperBound
)
Public Sub New (
lowerBound As Cartesian,
upperBound As Cartesian
)
public:
CartesianBounds(
Cartesian lowerBound,
Cartesian upperBound
)
new :
lowerBound : Cartesian *
upperBound : Cartesian -> CartesianBounds
Parameters
- lowerBound
- Type: AGI.Foundation.CoordinatesCartesian
The minimal values defining the bounds. - upperBound
- Type: AGI.Foundation.CoordinatesCartesian
The maximal values defining the bounds.
Exceptions Exception | Condition |
---|
ArgumentException |
Thrown when the upperBound is less than the lowerBound or when
one value in a given coordinate is NaN and the other is not.
|
See Also